summaryrefslogtreecommitdiffstats
path: root/ipatests/test_webui/data_idviews.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipatests/test_webui/data_idviews.py')
-rw-r--r--ipatests/test_webui/data_idviews.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/ipatests/test_webui/data_idviews.py b/ipatests/test_webui/data_idviews.py
new file mode 100644
index 000000000..9d62f33fe
--- /dev/null
+++ b/ipatests/test_webui/data_idviews.py
@@ -0,0 +1,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'),
+ ],
+}