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