mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-25 07:13:09 +00:00
Avoid duplication of "user creation" needle
The help test had its own needle for the user creation link, but we already have an existing one. We should probably re- arrange all the needles that are in 'install_process' now the root and user creation spokes are moved to the main hub, but that's a big change so I'll do it separately. This just removes the duplicate needle and tweaks some match names. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
28600540c0
commit
9243fa88fc
@ -10,6 +10,6 @@
|
||||
],
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"anaconda_help_create_user"
|
||||
"anaconda_help_user_creation"
|
||||
]
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 118 KiB After Width: | Height: | Size: 118 KiB |
@ -10,6 +10,6 @@
|
||||
],
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"anaconda_help_create_user"
|
||||
"anaconda_help_user_creation"
|
||||
]
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 145 KiB After Width: | Height: | Size: 145 KiB |
@ -11,6 +11,7 @@
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"ENV-DISTRI-fedora",
|
||||
"anaconda_install_user_creation"
|
||||
"anaconda_install_user_creation",
|
||||
"anaconda_main_hub_user_creation",
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -11,6 +11,7 @@
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"ENV-DISTRI-fedora",
|
||||
"anaconda_install_user_creation"
|
||||
"anaconda_install_user_creation",
|
||||
"anaconda_main_hub_user_creation"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -1,15 +0,0 @@
|
||||
{
|
||||
"area": [
|
||||
{
|
||||
"type": "match",
|
||||
"height": 29,
|
||||
"width": 29,
|
||||
"xpos": 726,
|
||||
"ypos": 397
|
||||
}
|
||||
],
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"anaconda_main_hub_create_user"
|
||||
]
|
||||
}
|
Binary file not shown.
Before Width: | Height: | Size: 88 KiB |
@ -1,15 +0,0 @@
|
||||
{
|
||||
"properties": [],
|
||||
"tags": [
|
||||
"anaconda_main_hub_create_user"
|
||||
],
|
||||
"area": [
|
||||
{
|
||||
"xpos": 248,
|
||||
"ypos": 556,
|
||||
"width": 32,
|
||||
"height": 33,
|
||||
"type": "match"
|
||||
}
|
||||
]
|
||||
}
|
Binary file not shown.
Before Width: | Height: | Size: 110 KiB |
@ -26,7 +26,7 @@ sub run {
|
||||
my @testplan;
|
||||
# For LIVE KDE:
|
||||
if ((get_var('LIVE')) && (get_var('DESKTOP') eq "kde")) {
|
||||
@testplan = qw/keyboard_layout time_date install_destination network_host_name root_password create_user/;
|
||||
@testplan = qw/keyboard_layout time_date install_destination network_host_name root_password user_creation/;
|
||||
}
|
||||
# For LIVE Workstation
|
||||
elsif ((get_var('LIVE')) && (get_var('DESKTOP') eq "gnome")) {
|
||||
@ -38,7 +38,7 @@ sub run {
|
||||
}
|
||||
# For ServerDVD
|
||||
else {
|
||||
@testplan = qw/keyboard_layout language_support time_date installation_source select_packages install_destination network_host_name root_password create_user/;
|
||||
@testplan = qw/keyboard_layout language_support time_date installation_source select_packages install_destination network_host_name root_password user_creation/;
|
||||
}
|
||||
|
||||
# Iterate over test plan and do the tests.
|
||||
|
Loading…
Reference in New Issue
Block a user