1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-30 17:33:07 +00:00

Compare commits

..

No commits in common. "38a3fde9bc4de27a60a0f8076a0bf9c4f5dea773" and "aec74d89fae352ffa498fc42c555957ad78a99d3" have entirely different histories.

2 changed files with 7 additions and 12 deletions

View File

@ -36,13 +36,8 @@ sub run {
# Open the Play category.
assert_and_click("software_category_play");
if (check_screen("software_application_chess")) {
click_lastmatch();
check_application_information("chess");
}
else {
record_soft_failure("The application was not listed on the first screen.");
}
assert_and_click("software_application_chess");
check_application_information("chess");
}
sub test_flags {

View File

@ -20,20 +20,20 @@ sub run {
unless (get_var("SUBVARIANT") eq "Silverblue") {
# Find the application.
find_application("inkscape");
find_application("mahjongg");
# Install the application.
install_application("inkscape", "rpm");
install_application("mahjongg", "rpm");
wait_still_screen(10);
# Check that it is installed.
check_app_installed("inkscape");
check_app_installed("mahjongg");
# Start it from Software.
start_application_via_packagemanager("inkscape");
start_application_via_packagemanager("mahjongg");
# 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 inkscape");
assert_script_run("rpm -qa gnome-mahjongg");
}
else {
record_info("Silverblue override", "This test has been skipped because the functionality is not available on Silverblue.");