def setUp(self):
     super(AuthTest, self).setUp()
     signup_request(self)
Example #2
0
 def test_success_max_length_id_password(self):
     return signup_request(self, id_='12345678901234567890', password='******', email='*****@*****.**')
Example #3
0
 def test_short_id_length(self):
     return signup_request(self, id_='1234')
Example #4
0
 def test_exist_id(self):
     signup_request(self)
     return signup_request(self, password='******', email='*****@*****.**')
Example #5
0
 def test_success_min_length_id_password(self):
     return signup_request(self)
Example #6
0
 def test_no_at_email(self):
     return signup_request(self, email='aaadsdf.dsf')
Example #7
0
 def test_no_dot_email(self):
     return signup_request(self, email='aaa@dsdf')
Example #8
0
 def test_long_password_length(self):
     return signup_request(self, password='******')
Example #9
0
 def test_short_password_length(self):
     return signup_request(self, password='******')
Example #10
0
 def test_long_id_length(self):
     return signup_request(self, id_='123456789012345678901')