From c60142efda817f030a7495cd6fe4a19953e55afa Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Tue, 21 May 2013 13:40:27 +0200 Subject: Make an ipa-tests package Rename the 'tests' directory to 'ipa-tests', and create an ipa-tests RPM containing the test suite Part of the work for: https://fedorahosted.org/freeipa/ticket/3654 --- ipatests/test_install/1_add.update | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 ipatests/test_install/1_add.update (limited to 'ipatests/test_install/1_add.update') diff --git a/ipatests/test_install/1_add.update b/ipatests/test_install/1_add.update new file mode 100644 index 000000000..2543a71f2 --- /dev/null +++ b/ipatests/test_install/1_add.update @@ -0,0 +1,22 @@ +# Add in a new place in the DIT for our test cases + +dn: cn=test, cn=accounts, $SUFFIX +add:objectClass: top +add:objectClass: nsContainer +add:cn: test + +# Add a test user +dn: uid=tuser, cn=test, cn=accounts, $SUFFIX +add:objectclass: top +add:objectclass: person +add:objectclass: posixaccount +add:objectclass: krbprincipalaux +add:objectclass: inetuser +add:homedirectory: /home/tuser +add:loginshell: /bin/bash +add:sn: User +add:uid: tuser +add:uidnumber: -1 +add:gidnumber: -1 +add:cn: Test User + -- cgit