summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/segments/laravel_version.spec9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/segments/laravel_version.spec b/test/segments/laravel_version.spec
index 88818c6a..c83edfaf 100755
--- a/test/segments/laravel_version.spec
+++ b/test/segments/laravel_version.spec
@@ -12,16 +12,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() {