1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-07-23 10:55:45 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/gnome/logs.pm
Adam Williamson f7fe590346 Adjust apps_startstop tests for GNOME 48 changes
GNOME 48 adds a new System folder alongside Utilities, and moves
things around a bit.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2025-03-18 14:19:53 -07:00

28 lines
471 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This test checks that Logs starts.
sub run {
my $self = shift;
# Start the application
start_with_launcher('apps_menu_logs', 'apps_menu_system');
# Check that is started
assert_screen 'apps_run_logs';
# Register application
register_application("gnome-logs");
# Close the application
quit_with_shortcut();
}
sub test_flags {
return {};
}
1;
# vim: set sw=4 et: