10 lines
104 B
Plaintext
10 lines
104 B
Plaintext
|
#!/usr/bin/env bats
|
||
|
load test_helper
|
||
|
|
||
|
@test "image build" {
|
||
|
|
||
|
run build_image
|
||
|
[ "$status" -eq 0 ]
|
||
|
|
||
|
}
|