mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-15 06:09:58 +08:00
27 lines
871 B
PHP
27 lines
871 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use App\Services\Plugin;
|
|
use App\Services\PluginManager;
|
|
|
|
class PluginEnableCommandTest extends TestCase
|
|
{
|
|
public function testEnablePlugin()
|
|
{
|
|
$this->mock(PluginManager::class, function ($mock) {
|
|
$mock->shouldReceive('get')
|
|
->with('my-plugin')
|
|
->once()
|
|
->andReturn(new Plugin('', ['title' => 'My Plugin']));
|
|
$mock->shouldReceive('enable')->with('nope')->once()->andReturn(false);
|
|
$mock->shouldReceive('enable')->with('my-plugin')->once()->andReturn(true);
|
|
});
|
|
|
|
$this->artisan('plugin:enable nope')
|
|
->expectsOutput(trans('admin.plugins.operations.not-found'));
|
|
$this->artisan('plugin:enable my-plugin')
|
|
->expectsOutput(trans('admin.plugins.operations.enabled', ['plugin' => 'My Plugin']));
|
|
}
|
|
}
|