diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2013-04-21 11:00:10 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2013-04-21 11:00:10 +0200 |
commit | c8a9de50c8f7254c61888982ae270bf71c3f8506 (patch) | |
tree | 9cd20247043819d932ba2920f6b500db0315dc04 /test | |
parent | cb9eea1db0715cc8c944f54e61270d25502e3163 (diff) | |
download | app.sh-c8a9de50c8f7254c61888982ae270bf71c3f8506.tar.gz app.sh-c8a9de50c8f7254c61888982ae270bf71c3f8506.tar.bz2 app.sh-c8a9de50c8f7254c61888982ae270bf71c3f8506.tar.xz app.sh-c8a9de50c8f7254c61888982ae270bf71c3f8506.zip |
o Making the file resolver useful.
Diffstat (limited to 'test')
-rwxr-xr-x | test/app-upgrade.bats | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/app-upgrade.bats b/test/app-upgrade.bats index 2dde851..5d79260 100755 --- a/test/app-upgrade.bats +++ b/test/app-upgrade.bats @@ -14,17 +14,18 @@ load utils app conf get maven.version match '${lines[0]}' "1.0-SNAPSHOT" maven_version="${lines[0]}" - describe maven_version=$maven_version app conf get app.version match '${lines[0]}' "1.0-.*" app_version="${lines[0]}" - describe app_version=$app_version app conf get app.resolved_version match '${lines[0]}' "1.0-.*" eq '${lines[0]}' "$app_version" resolved_version="${lines[0]}" + + describe maven_version=$maven_version + describe app_version=$app_version describe resolved_version=$resolved_version install_artifact |