Skip to content
Permalink
64f1e97abb
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
 
 
Cannot retrieve contributors at this time
22 lines (17 sloc) 551 Bytes
#!/usr/bin/env bats
load ../common
@test "Creates grouper properties" {
result="$(docker run -i $maintainer/$imagename ls /opt/etc/grouper.hibernate.properties)"
[ "$result" != '' ]
}
@test "Consumes first-run experience" {
result="$(docker run -i $maintainer/$imagename ls /tmp/firsttimerunning)"
[ "$result" != '' ]
}
@test "Contains java" {
run docker run -i $maintainer/$imagename which java
[ "$status" -ne 0 ]
}
# @test "Has fired autorun onbuild" {
# docker run -i $maintainer/$imagename find /opt/log/autoexec.build.log
# }