mirror of
https://github.com/containers/skopeo.git
synced 2025-04-27 11:01:18 +00:00
20 lines
354 B
Bash
20 lines
354 B
Bash
#!/usr/bin/env bats
|
|
#
|
|
# Simplest set of skopeo tests. If any of these fail, we have serious problems.
|
|
#
|
|
|
|
load helpers
|
|
|
|
# Override standard setup! We don't yet trust anything
|
|
function setup() {
|
|
:
|
|
}
|
|
|
|
@test "skopeo version emits reasonable output" {
|
|
run_skopeo --version
|
|
|
|
expect_output --substring "skopeo version [0-9.]+"
|
|
}
|
|
|
|
# vim: filetype=sh
|