test/system: Shorten the names of the tests and use consistent wording

Currently, some of the names of the tests were too long, and had
inconsistent and verbose wording.  This made it difficult to look at
them and get a gist of all the scenarios being tested.  The names are
like headings.  They shouldn't be too long, should capture the primary
objective of the test and be consistent in their wording.

https://github.com/containers/toolbox/pull/1276
This commit is contained in:
Debarshi Ray 2023-03-21 12:23:13 +01:00
parent 5b8a7a00c0
commit 08e40e666e

View file

@ -29,28 +29,28 @@ teardown() {
}
@test "list: Run 'list' with zero containers and zero images (the list should be empty)" {
@test "list: Smoke test" {
run --keep-empty-lines $TOOLBOX list
assert_success
assert_output ""
}
@test "list: Run 'list --containers' with zero containers (the list should be empty)" {
@test "list: Smoke test (using --containers)" {
run --keep-empty-lines $TOOLBOX list --containers
assert_success
assert_output ""
}
@test "list: Run 'list --images' with zero images (the list should be empty)" {
@test "list: Smoke test (using --images)" {
run --keep-empty-lines $TOOLBOX list --images
assert_success
assert_output ""
}
@test "list: Run 'list' with zero toolbox's containers and images, but other image (the list should be empty)" {
@test "list: With just one non-Toolbx image" {
pull_distro_image busybox
run podman images
@ -63,7 +63,7 @@ teardown() {
assert_output ""
}
@test "list: List an image without a name" {
@test "list: An image without a name" {
build_image_without_name >/dev/null
run --keep-empty-lines --separate-stderr $TOOLBOX list
@ -97,7 +97,7 @@ teardown() {
fi
}
@test "list: Try to list images and containers (no flag) with 3 containers and 2 images (the list should have 3 images and 2 containers)" {
@test "list: Containers and images" {
# Pull the two images
pull_default_image
pull_distro_image fedora 34