mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-01 14:04:22 +00:00
96c75c5e28
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>
43 lines
732 B
Perl
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:
|