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)
Esempio 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)
 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)
Esempio 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)