Browse Source

Fix tests not removing test ldap user
Add MacOS DS_Store file to be ignored by git

Fabs 11 years ago
parent
commit
fc665ea4dc
2 changed files with 3 additions and 0 deletions
  1. 1 0
      .gitignore
  2. 2 0
      coin/members/tests.py

+ 1 - 0
.gitignore

@@ -3,3 +3,4 @@
 *.swp
 .svn
 coin/settings_local.py
+.DS_Store

+ 2 - 0
coin/members/tests.py

@@ -179,6 +179,8 @@ class MemberAdminTests(TestCase):
         self.assertNotContains(edit_page,
             '''<input id="id_ldap_cn" />''',
             html=True)
+        
+        LdapUser.objects.get(pk=ldap_cn).delete();
 
 class MemberTestsUtils(object):
     @staticmethod