<?php
/**
 * Test block-editor integration.
 *
 * @package External_Permalinks_Redux
 */

/**
 * Class TestClassExternalPermalinksReduxBlockEditor.
 *
 * @coversDefaultClass External_Permalinks_Redux_Block_Editor
 */
class TestClassExternalPermalinksReduxBlockEditor extends WP_UnitTestCase {
	/**
	 * Test meta registration.
	 *
	 * @covers ::register_meta()
	 */
	public function test_register_meta() {
		$this->markTestIncomplete( 'This test has not been implemented.' );
	}

	/**
	 * Test overridding private meta editing.
	 *
	 * @covers ::allow_meta_updates()
	 */
	public function test_allow_meta_updates() {
		$this->markTestIncomplete( 'This test has not been implemented.' );
	}

	/**
	 * Test script enqueueing.
	 *
	 * @covers ::enqueue()
	 */
	public function test_enqueue() {
		$this->markTestIncomplete( 'This test has not been implemented.' );
	}
}