1e2232762c
The tests introduced by commit b5cdc57ae3
have proven to be
rather unstable due to mistakes in their design. The tests were quite
chaotically structured, and because of that images were deleted and
pulled too often, causing several false positives [1, 2].
This changes the structure of the tests in a major way. The tests
(resp. commands) are now run in a manner that better simulates the way
Toolbox is actually used. From a clean state, through creating
containers, using them and in the end deleting them. This should
reduce the strain on the bandwidth and possibly even speed up the
tests themselves.
[1] https://github.com/containers/toolbox/pull/372
[2] https://github.com/containers/toolbox/pull/374
https://github.com/containers/toolbox/pull/375
14 lines
231 B
Bash
14 lines
231 B
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
@test "Output version number using full flag" {
|
|
skip "Not implemented"
|
|
run_toolbox --version
|
|
}
|
|
|
|
@test "Output version number using command" {
|
|
skip "Not implemented"
|
|
run_toolbox version
|
|
}
|
|
|