blessing-skin-server/tests/CommandsTest/PluginEnableCommandTest.php
2019-08-09 10:13:55 +08:00

17 lines
355 B
PHP

<?php
namespace Tests;
use App\Services\PluginManager;
class PluginEnableCommandTest extends TestCase
{
public function testEnablePlugin()
{
$this->mock(PluginManager::class, function ($mock) {
$mock->shouldReceive('enable')->with('my-plugin')->once();
});
$this->artisan('plugin:enable my-plugin');
}
}