diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2012-10-15 18:43:59 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2012-10-15 18:43:59 +0200 |
commit | 7a2bbcede061b26cd478a78096512a4bd759ec3e (patch) | |
tree | a853e330b1ff770fba241c1e9707a5bb124a6807 /test/app-install.bats | |
parent | 2c7a659b8a8d0d7a082aed01ab44e5710841412b (diff) | |
download | app.sh-7a2bbcede061b26cd478a78096512a4bd759ec3e.tar.gz app.sh-7a2bbcede061b26cd478a78096512a4bd759ec3e.tar.bz2 app.sh-7a2bbcede061b26cd478a78096512a4bd759ec3e.tar.xz app.sh-7a2bbcede061b26cd478a78096512a4bd759ec3e.zip |
o Renaming './app app' to './app instance'.
Diffstat (limited to 'test/app-install.bats')
-rwxr-xr-x | test/app-install.bats | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/app-install.bats b/test/app-install.bats index 9961c84..59880bd 100755 --- a/test/app-install.bats +++ b/test/app-install.bats @@ -5,9 +5,9 @@ load utils # TODO: Add test for installing duplicate version -@test "./app app install app-a" { +@test "./app instance install app-a" { mkzip "app-a" - app app install \ + app instance install \ -r file \ -u $BATS_TEST_DIRNAME/data/app-a.zip \ -n app-a -i prod @@ -23,9 +23,9 @@ Changing current symlink" ] [ ${#lines[*]} == 6 ] } -@test "./app app install install-test-env" { +@test "./app instance install install-test-env" { mkzip "install-test-env" - app app install \ + app instance install \ -r file \ -u $BATS_TEST_DIRNAME/data/install-test-env.zip \ -n install-test-env -i prod -v 1.0 |