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);
|
|
});
|