Esempio n. 1
0
 def comment(self, logged_in_user):
     return CommentFactory.create(author=logged_in_user.id)
Esempio n. 2
0
 def comment(self):
     return CommentFactory.create()
Esempio n. 3
0
 def comment(self, post):
     return CommentFactory.create(post=post, is_reply=False)
Esempio n. 4
0
 def comment(self, post):
     return CommentFactory.create(post=post)
Esempio n. 5
0
 def comment(self, post, logged_in_user):
     return CommentFactory.create(post=post,
                                  likes=[str(logged_in_user.id)])
Esempio n. 6
0
 def comment(self, post, logged_in_user):
     return CommentFactory.create(post=post, author=logged_in_user)