Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
7e811812df
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
17 lines (13 sloc) 388 Bytes
#!/usr/bin/env bats
load ../common
@test "Consumes first-run experience" {
result="$(docker run -i $maintainer/$imagename ls /tmp/firsttimerunning)"
[ "$result" != '' ]
}
@test "Contains php" {
run docker run -i $maintainer/$imagename which php
[ "$status" -eq 0 ]
}
@test "Has fired autorun onbuild" {
docker run -i $maintainer/$imagename find /opt/log/autoexec.build.log
}