mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
17 lines
359 B
PHP
17 lines
359 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use App\Services\PluginManager;
|
|
|
|
class PluginDisableCommandTest extends TestCase
|
|
{
|
|
public function testDisablePlugin()
|
|
{
|
|
$this->mock(PluginManager::class, function ($mock) {
|
|
$mock->shouldReceive('disable')->with('my-plugin')->once();
|
|
});
|
|
$this->artisan('plugin:disable my-plugin');
|
|
}
|
|
}
|