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