mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-07-18 03:11:37 +00:00
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.
32 lines
496 B
Perl
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:
|