mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 18:01:37 +00:00
17 lines
389 B
PHP
17 lines
389 B
PHP
<?php
|
|
|
|
namespace Tests\Feature\SSHCommands\Database;
|
|
|
|
use App\SSHCommands\Database\DeleteCommand;
|
|
use Tests\TestCase;
|
|
|
|
class DeleteCommandTest extends TestCase
|
|
{
|
|
public function test_generate_command()
|
|
{
|
|
$command = new DeleteCommand('mysql', 'test');
|
|
|
|
$this->assertStringContainsString('sudo mysql -e "DROP DATABASE IF EXISTS test";', $command->content());
|
|
}
|
|
}
|