Exemplo n.º 1
0
 def test_fxa_migrated_migrated(self):
     user = UserProfile(fxa_id='db27f8')
     assert user.fxa_migrated() is True
Exemplo n.º 2
0
 def test_fxa_migrated_not_migrated_empty_string(self):
     user = UserProfile(fxa_id='')
     assert user.fxa_migrated() is False
Exemplo n.º 3
0
 def test_fxa_migrated_not_migrated(self):
     user = UserProfile(fxa_id=None)
     assert user.fxa_migrated() is False
Exemplo n.º 4
0
 def test_fxa_migrated_migrated(self):
     user = UserProfile(fxa_id='db27f8')
     assert user.fxa_migrated() is True
Exemplo n.º 5
0
 def test_fxa_migrated_not_migrated_empty_string(self):
     user = UserProfile(fxa_id='')
     assert user.fxa_migrated() is False
Exemplo n.º 6
0
 def test_fxa_migrated_not_migrated(self):
     user = UserProfile(fxa_id=None)
     assert user.fxa_migrated() is False