1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-07-18 03:11:37 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/gnome/software.pm
Lukáš Růžička 7e352e429c Use special start checking on Software.
The enhanced method of menu_launch_type does not cover for
special corner cases, where the application starts in a
specific mode (settings dialogues etc.)

This handles exceptions for Software.
2025-03-05 19:59:40 +00:00

32 lines
496 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This test checks that Software starts.
sub run {
my $self = shift;
# Start the application
start_with_launcher('apps_menu_software');
# check if third party dialog appears, if so, click it away
check_software_start();
# Register application
register_application("gnome-software");
# Close the application
quit_with_shortcut();
}
sub test_flags {
return {};
}
1;
# vim: set sw=4 et: