mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 02:11:36 +00:00
19 lines
527 B
PHP
19 lines
527 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\SSHCommands\Database;
|
|
|
|
use App\SSHCommands\Database\CreateCommand;
|
|
use Tests\TestCase;
|
|
|
|
class CreateCommandTest extends TestCase
|
|
{
|
|
public function test_generate_command()
|
|
{
|
|
$command = new CreateCommand('mysql', 'test');
|
|
|
|
$this->assertStringContainsString('sudo mysql -e "CREATE DATABASE IF NOT EXISTS test CHARACTER SET utf8 COLLATE utf8_general_ci";', $command->content());
|
|
|
|
$this->assertStringContainsString('echo "Command executed"', $command->content());
|
|
}
|
|
}
|