1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-09 01:57:22 +00:00
os-autoinst-distri-fedora/tests/applications/tour/tour.pm
Adam Williamson 96c75c5e28 Update tour needles for upstream changes
Various changes to the Tour text needed needle updates. The
final screen doesn't say "Have a nice day!" any more, so let's
rename that needle.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2024-04-12 12:04:25 -07:00

43 lines
732 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This test will test the Tour application.
sub run {
my $self = shift;
# Start the Application
menu_launch_type("tour");
assert_screen("tour_start");
send_key("right");
assert_screen("tour_overview");
send_key("right");
assert_screen("tour_search");
send_key("right");
assert_screen("tour_workspaces");
send_key("right");
assert_screen("tour_updown");
send_key("right");
assert_screen("tour_leftright");
send_key("right");
assert_screen("tour_done");
}
sub test_flags {
# If this test fails, there is no need to continue.
return {fatal => 1, milestone => 1};
}
1;
# vim: set sw=4 et: