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