12 lines
354 B
Bash
12 lines
354 B
Bash
#!/usr/bin/env bats
|
|
|
|
load 'libs/helpers'
|
|
|
|
@test "test suite: Setup" {
|
|
# Cache the default image for the system
|
|
_pull_and_cache_distro_image $(get_system_id) $(get_system_version) || die
|
|
# Cache all images that will be needed during the tests
|
|
_pull_and_cache_distro_image fedora 32 || die
|
|
_pull_and_cache_distro_image busybox || die
|
|
}
|