Skip to content
Snippets Groups Projects
Commit b7aa7f4e authored by Erick Hitter's avatar Erick Hitter
Browse files

Scaffold unit tests

parent 184e29b0
No related branches found
No related tags found
1 merge request!14Add native block-editor support
Pipeline #4808 failed with stages
in 2 minutes and 22 seconds
......@@ -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 -->
......
<?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.' );
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment