mirror of
https://gh.wpcy.net/https://github.com/wp-cli/extension-command.git
synced 2026-04-29 15:24:53 +08:00
11 lines
180 B
PHP
11 lines
180 B
PHP
<?php
|
|
|
|
namespace WP_CLI\Extension\Tests;
|
|
|
|
use WP_CLI\Tests\TestCase;
|
|
|
|
class PluginCommandTest extends TestCase {
|
|
public function test_sample() {
|
|
$this->assertTrue( true );
|
|
}
|
|
}
|