Exemple #1
0
 def testaccount_name_does_exist(self):
     account.session = self.ses
     account.add(account.Account("spiritic", "123"))
     self.assert_(not account.nameUnused("spiritic"))
Exemple #2
0
 def testaccount_name_does_exist(self):
     account.session = self.ses
     account.add(account.Account("spiritic", "123" ))
     self.assert_( not account.nameUnused( "spiritic" ) )
Exemple #3
0
 def testaccount_name_doesnt_exist(self):
     account.session = self.ses
     self.assert_(account.nameUnused("Jim"))
Exemple #4
0
 def testaccount_name_doesnt_exist(self):
     account.session = self.ses
     self.assert_( account.nameUnused( "Jim" ) )