1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-01-06 01:13:07 +00:00

Switch applications from Mahjongg to Inkscape.

This commit is contained in:
Lukas Ruzicka 2023-03-23 17:20:24 +01:00
parent aec74d89fa
commit 218e346e3c

View File

@ -20,20 +20,20 @@ sub run {
unless (get_var("SUBVARIANT") eq "Silverblue") {
# Find the application.
find_application("mahjongg");
find_application("inkscape");
# Install the application.
install_application("mahjongg", "rpm");
install_application("inkscape", "rpm");
wait_still_screen(10);
# Check that it is installed.
check_app_installed("mahjongg");
check_app_installed("inkscape");
# Start it from Software.
start_application_via_packagemanager("mahjongg");
start_application_via_packagemanager("inkscape");
# Confirm that it has been installed using CLI tools.
# Switch to console
$self->root_console(tty => 3);
# Check that the rpm is installed.
assert_script_run("rpm -qa gnome-mahjongg");
assert_script_run("rpm -qa inkscape");
}
else {
record_info("Silverblue override", "This test has been skipped because the functionality is not available on Silverblue.");