mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 00:41:25 -06:00
904db149e9
Provides missing test coverage for ID views web UI. Reviewed-By: Pavel Vomacka <pvomacka@redhat.com>
21 lines
430 B
Python
21 lines
430 B
Python
#
|
|
# Copyright (C) 2015 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
ENTITY = 'idview'
|
|
USER_FACET = 'idoverrideuser'
|
|
GROUP_FACET = 'idoverridegroup'
|
|
HOST_FACET = 'appliedtohosts'
|
|
|
|
PKEY = 'itest-view'
|
|
DATA = {
|
|
'pkey': PKEY,
|
|
'add': [
|
|
('textbox', 'cn', PKEY),
|
|
('textarea', 'description', 'Description of ID view'),
|
|
],
|
|
'mod': [
|
|
('textarea', 'description', 'Different description'),
|
|
],
|
|
}
|