GNOME apps: drop Archiver test

The app was dropped from Workstation's default package set a few
days ago. See:
https://pagure.io/fedora-workstation/issue/167

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2021-03-05 18:25:29 -08:00
parent e23df39ee1
commit ac9edb4cfb
9 changed files with 0 additions and 88 deletions

View File

@ -1,15 +0,0 @@
{
"area": [
{
"type": "match",
"ypos": 300,
"height": 30,
"xpos": 212,
"width": 42
}
],
"properties": [],
"tags": [
"apps_menu_archiver"
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 113 KiB

View File

@ -1,15 +0,0 @@
{
"properties": [],
"tags": [
"apps_menu_archiver"
],
"area": [
{
"xpos": 203,
"ypos": 282,
"width": 49,
"height": 53,
"type": "match"
}
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 KiB

View File

@ -1,15 +0,0 @@
{
"area": [
{
"width": 118,
"ypos": 110,
"type": "match",
"xpos": 452,
"height": 23
}
],
"properties": [],
"tags": [
"apps_run_archiver"
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,15 +0,0 @@
{
"area": [
{
"xpos": 451,
"height": 23,
"type": "match",
"width": 118,
"ypos": 110
}
],
"properties": [],
"tags": [
"apps_run_archiver"
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,28 +0,0 @@
use base "installedtest";
use strict;
use testapi;
use utils;
# This test checks that Archive Manager starts.
sub run {
my $self = shift;
# Start the application
start_with_launcher('apps_menu_archiver', 'apps_menu_utilities');
# Check that is started
assert_screen 'apps_run_archiver';
# Register application
register_application("menu-archiver");
# Close the application
quit_with_shortcut();
}
sub test_flags {
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: