summaryrefslogtreecommitdiff
path: root/test/kpod_create.bats
blob: 5605b5fe0c01e9b08ac622ce7a68408970bd590b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env bats

load helpers

function setup() {
    copy_images
}

function teardown() {
    cleanup_test
}

@test "create a container based on local image" {
    skip "Reenable after kpod rm merges, and use rm to clean up"
    run ${KPOD_BINARY} ${KPOD_OPTIONS} create $BB ls
    echo "$output"
    [ "$status" -eq 0 ]
}

@test "create a container based on a remote image" {
    skip "Reenable after kpod rm merges, and use rm to clean up"
    run ${KPOD_BINARY} ${KPOD_OPTIONS} create ${BB_GLIBC} ls
    echo "$output"
    [ "$status" -eq 0 ]
}