1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-12-04 19:13:08 +00:00
os-autoinst-distri-fedora/tests/applications/system-settings/network.pm
2022-03-07 14:37:25 +01:00

23 lines
327 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This is to check up the Network tab.
sub run {
my $self = shift;
assert_and_click("settings_menu_network");
assert_screen("settings_network_wired_connected");
}
sub test_flags {
return {fatal => 1, milestone => 1};
}
1;
# vim: set sw=4 et: