Exemplo n.º 1
0
 def test_all_for_user_by_user_id(self):
     # Iterate over all tags for user
     tags = Tag.find_all_for_user(user_id=self.user.user_id)
     for tag in tags:
         self.assertIsNotNone(tag.id)
Exemplo n.º 2
0
 def test_all_for_user_by_user_id(self):
     # Iterate over all tags for user
     tags = Tag.find_all_for_user(user_id=self.user.user_id)
     for tag in tags:
         self.assertIsNotNone(tag.id)
Exemplo n.º 3
0
 def test_all_for_user_by_email(self):
     # Iterate over all tags for user
     tags = Tag.find_all_for_user(email=self.user.email)
     for tag in tags:
         self.assertIsNotNone(tag.id)
Exemplo n.º 4
0
 def test_all_for_user_by_email(self):
     # Iterate over all tags for user
     tags = Tag.find_all_for_user(email=self.user.email)
     for tag in tags:
         self.assertIsNotNone(tag.id)