diff options
Diffstat (limited to 'test/segments/laravel_version.spec')
-rwxr-xr-x | test/segments/laravel_version.spec | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/segments/laravel_version.spec b/test/segments/laravel_version.spec index 40b130d2..6133b19a 100755 --- a/test/segments/laravel_version.spec +++ b/test/segments/laravel_version.spec @@ -14,16 +14,17 @@ function setUp() { function mockLaravelVersion() { case "$1" in "artisan") - echo "Laravel Framework version 5.4.23" + # artisan --version follows the format Laravel Framework <version> + echo "Laravel Framework 5.4.23" ;; default) esac } function mockNoLaravelVersion() { - # This should output some error - >&2 echo "Artisan not available" - return 1 + # When php can't find a file it will output a message + echo "Could not open input file: artisan" + return 0 } function testLaravelVersionSegment() { |