You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
308 B
17 lines
308 B
#!/usr/bin/env bats |
|
|
|
@test "Check that virt-install is available" { |
|
command -v virt-install |
|
} |
|
|
|
@test "Check that virt-resize is available" { |
|
command -v virt-resize |
|
} |
|
|
|
@test "Check that qemu-img is available" { |
|
command -v qemu-img |
|
} |
|
|
|
@test "Check that virsh is available" { |
|
command -v virsh |
|
}
|
|
|