Skip to content
Permalink
84ac962391
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Jim Van Fleet First tests passing
Latest commit 410de79 Jul 29, 2016 History
0 contributors

Users who have contributed to this file

executable file 23 lines (18 sloc) 409 Bytes
#!/usr/bin/env bats
load ../common
setup() {
echo $PWD > test.log
./bin/rebuild.sh
}
@test "Should be buildable" {
run bin/build.sh
[ "$status" -eq 0 ]
}
@test "Concludes first-run experience" {
result="$(docker run -i $maintainer/$imagename find /tmp/firsttimerunning)"
[ "$result" != '' ]
}
@test "Contains php" {
run docker run -i $maintainer/$imagename which php
[ "$status" -eq 0 ]
}