summaryrefslogtreecommitdiffstats
path: root/ipatests/test_webui/data_idviews.py
blob: 9d62f33fe47dcf2cbde525d687ddd80c50b367e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# 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'),
    ],
}