2023-01-03 14:04:20 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
|
|
|
# This will set up the environment for the Characters test.
|
|
|
|
# It will open the application and save a milestone.
|
|
|
|
|
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
2023-10-02 14:02:11 +00:00
|
|
|
# Set the update notification timestamp
|
|
|
|
set_update_notification_timestamp();
|
2023-01-03 14:04:20 +00:00
|
|
|
|
|
|
|
# Start the application
|
|
|
|
menu_launch_type("characters");
|
|
|
|
# Check it has started
|
|
|
|
assert_screen 'apps_run_chars';
|
|
|
|
# Fullsize the window.
|
|
|
|
send_key("super-up");
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return {fatal => 1, milestone => 1};
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|