mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-08 16:54:21 +00:00
99b3ef8f03
Per the needle cleanup, it hasn't been seen for some time. The test is failing ATM but even the last time it passed - https://openqa.fedoraproject.org/tests/2311371#step/kontakt/3 - we did not see this. Signed-off-by: Adam Williamson <awilliam@redhat.com>
29 lines
487 B
Perl
29 lines
487 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
# This test checks that Kontact starts.
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
|
|
# Start the application
|
|
menu_launch_type 'kontact';
|
|
# Get rid of personal data
|
|
assert_and_click 'kde_cancel_button', timeout => 60;
|
|
# Check that it is started
|
|
assert_screen 'kontact_runs';
|
|
# Close the application
|
|
quit_with_shortcut();
|
|
}
|
|
|
|
sub test_flags {
|
|
return {always_rollback => 1};
|
|
}
|
|
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|