2021-03-04 01:27:39 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
|
|
|
# This test checks that LibreOffice Impress starts.
|
|
|
|
|
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
|
|
|
# Start the application
|
|
|
|
menu_launch_type 'libreoffice impress';
|
|
|
|
# Check that it is started
|
2022-12-05 14:16:16 +00:00
|
|
|
assert_screen 'limpress_runs', timeout => 60;
|
2021-03-04 01:27:39 +00:00
|
|
|
# Close the template chooser, then the application
|
2023-12-04 19:18:12 +00:00
|
|
|
send_key 'esc';
|
2021-03-04 01:27:39 +00:00
|
|
|
quit_with_shortcut();
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
2024-04-12 19:45:47 +00:00
|
|
|
return {};
|
2021-03-04 01:27:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|