mirror of
https://github.com/bitinflow/bunny-cli.git
synced 2026-06-15 08:17:49 +00:00
8 lines
184 B
PHP
Executable File
8 lines
184 B
PHP
Executable File
<?php
|
|
|
|
test('inspiring command', function () {
|
|
$this->artisan('inspiring')
|
|
->expectsOutput('Simplicity is the ultimate sophistication.')
|
|
->assertExitCode(0);
|
|
});
|