blessing-skin-server/tests/CommandsTest/EnablePluginTest.php

17 lines
348 B
PHP
Raw Normal View History

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