mirror of
				https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
				synced 2025-10-31 07:06:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			499 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			499 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| use base "installedtest";
 | |
| use strict;
 | |
| use testapi;
 | |
| use utils;
 | |
| 
 | |
| # This is a pre-setting file for the Settings. Everything that needs to be set
 | |
| # up before the actual testing goes here.
 | |
| 
 | |
| sub run {
 | |
|     my $self = shift;
 | |
| 
 | |
|     # Start the application
 | |
|     menu_launch_type("settings");
 | |
|     # Check that is started
 | |
|     assert_screen 'apps_run_settings';
 | |
| 
 | |
|     # Fullsize the Settings window.
 | |
|     send_key("super-up");
 | |
| 
 | |
| }
 | |
| 
 | |
| sub test_flags {
 | |
|     return {fatal => 1, milestone => 1};
 | |
| }
 | |
| 
 | |
| 1;
 | |
| 
 | |
| # vim: set sw=4 et:
 |