22cd20e705
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
27 lines
580 B
Bash
27 lines
580 B
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
function teardown() {
|
|
cleanup_test
|
|
}
|
|
|
|
# PR#59
|
|
@test "pod release name on remove" {
|
|
if "$TRAVIS"; then
|
|
skip "cannot yet run this test in a container"
|
|
fi
|
|
|
|
start_ocid
|
|
run ocic pod create --config "$TESTDATA"/sandbox_config.json
|
|
[ "$status" -eq 0 ]
|
|
echo "$output"
|
|
id="$output"
|
|
run ocic pod stop --id "$id"
|
|
[ "$status" -eq 0 ]
|
|
sleep 1 # FIXME: there's a race between container kill and delete below
|
|
run ocic pod remove --id "$id"
|
|
[ "$status" -eq 0 ]
|
|
run ocic pod create --config "$TESTDATA"/sandbox_config.json
|
|
[ "$status" -eq 0 ]
|
|
}
|