summaryrefslogtreecommitdiff
path: root/test/it.bats
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2013-10-22 21:07:55 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2013-10-22 21:08:06 +0200
commit5821a949035a5e098a2c6b395818f5efa1c66f8e (patch)
treed422930b63ce2ed2a0276869173b2b9996fd6bfc /test/it.bats
parentb48cb3ff989c7c8ad89f04c8eda5a0e8cf091bf7 (diff)
downloadappstore-5821a949035a5e098a2c6b395818f5efa1c66f8e.tar.gz
appstore-5821a949035a5e098a2c6b395818f5efa1c66f8e.tar.bz2
appstore-5821a949035a5e098a2c6b395818f5efa1c66f8e.tar.xz
appstore-5821a949035a5e098a2c6b395818f5efa1c66f8e.zip
wip
Diffstat (limited to 'test/it.bats')
-rw-r--r--test/it.bats8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/it.bats b/test/it.bats
index d594049..406d5fc 100644
--- a/test/it.bats
+++ b/test/it.bats
@@ -6,7 +6,7 @@ load utils
@test "Happy day" {
mkzip my-webapp
install_artifact "my-webapp"
- install_artifact "my-webapp" 1.0
+# install_artifact "my-webapp" 1.0
cd $BATS_TMPDIR
cd appstore
@@ -20,9 +20,11 @@ load utils
git config user.name "Test Case"
git config user.email tester@example.org
- echo "app-1,maven,org.example:app-a:1.0-SNAPSHOT,1.0-SNAPSHOT,enabled" >> apps.csv
+ echo "frontend,maven,org.example:my-webapp:1.0-SNAPSHOT,1.0-SNAPSHOT,enabled" >> apps.csv
+ echo "backend,maven,org.example:my-webapp:1.0-SNAPSHOT,1.0-SNAPSHOT,enabled" >> apps.csv
+ echo "left,maven,org.example:my-webapp:1.0-SNAPSHOT,1.0-SNAPSHOT,disabled" >> apps.csv
git commit -m "o Adding app-1." -a
git push cloud master
- eq "ssh://localhost$BATS_TMPDIR/appstore/server/mysetup" `git config remote.cloud.url`
+ eq "ssh://localhost$BATS_TMPDIR/appstore/server/repos/mysetup" `git config remote.cloud.url`
eq 1 2
}