Skip to content
Snippets Groups Projects
test-class-external-permalinks-redux-block-editor.php 754 B
Newer Older
Erick Hitter's avatar
Erick Hitter committed
<?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.' );
	}
}