Skip to content
Permalink
bb1239600a
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
executable file 12 lines (9 sloc) 245 Bytes
#!/usr/bin/env bats
load ../common
@test "Concludes first-run experience" {
result="$(docker run -i $maintainer/$imagename find /tmp/firsttimerunning)"
[ "$result" != '' ]
}
@test "Contains ONBUILD mechanism" {
grep ONBUILD Dockerfile
}