Fix error in laravel_version when artisan is not present

This commit is contained in:
Brandon Clothier 2018-07-14 18:24:10 -04:00
commit 48b264f564
No known key found for this signature in database
GPG key ID: D71A0436ED3153AD
2 changed files with 8 additions and 8 deletions

View file

@ -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() {