1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-29 01:07:22 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/kde/kontakt.pm
Adam Williamson 99b3ef8f03 kontakt: drop the check for 'enable_unified_mailboxes'
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>
2024-01-09 17:44:47 -08:00

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: