Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
External Permalinks Redux
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WP Plugins
External Permalinks Redux
Commits
b7aa7f4e
Commit
b7aa7f4e
authored
2 years ago
by
Erick Hitter
Browse files
Options
Downloads
Patches
Plain Diff
Scaffold unit tests
parent
184e29b0
No related branches found
No related tags found
1 merge request
!14
Add native block-editor support
Pipeline
#4808
failed with stages
in 2 minutes and 22 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
phpcs.xml
+0
-1
0 additions, 1 deletion
phpcs.xml
tests/test-class-external-permalinks-redux-block-editor.php
+34
-0
34 additions, 0 deletions
tests/test-class-external-permalinks-redux-block-editor.php
with
34 additions
and
1 deletion
phpcs.xml
+
0
−
1
View file @
b7aa7f4e
...
...
@@ -6,7 +6,6 @@
<file>
.
</file>
<exclude-pattern>
/assets/build/
</exclude-pattern>
<exclude-pattern>
/node_modules/
</exclude-pattern>
<exclude-pattern>
/tests/*
</exclude-pattern>
<!-- How to scan -->
<!-- Usage instructions: https://github.com/squizlabs/PHP_CodeSniffer/wiki/Usage -->
...
...
This diff is collapsed.
Click to expand it.
tests/test-class-external-permalinks-redux-block-editor.php
0 → 100644
+
34
−
0
View file @
b7aa7f4e
<?php
/**
* Test block-editor integration.
*
* @pacakge External_Permalinks_Redux
*/
/**
* Class TestClassExternalPermalinksReduxBlockEditor.
*
* @coversDefaultClass External_Permalinks_Redux_Block_Editor
*/
class
TestClassExternalPermalinksReduxBlockEditor
extends
WP_UnitTestCase
{
/**
* @covers ::register_meta()
*/
public
function
test_register_meta
()
{
$this
->
markTestIncomplete
(
'This test has not been implemented.'
);
}
/**
* @covers ::allow_meta_updates()
*/
public
function
test_allow_meta_updates
()
{
$this
->
markTestIncomplete
(
'This test has not been implemented.'
);
}
/**
* @covers ::enqueue()
*/
public
function
test_enqueue
()
{
$this
->
markTestIncomplete
(
'This test has not been implemented.'
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment