예제 #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)
예제 #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)
예제 #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)
예제 #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)