2020-05-10 03:15:33 +00:00
|
|
|
from django.test import TestCase
|
|
|
|
|
2020-09-21 15:10:37 +00:00
|
|
|
from bookwyrm import models
|
|
|
|
from bookwyrm import status as status_builder
|
2020-05-10 03:15:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Comment(TestCase):
|
|
|
|
''' we have hecka ways to create statuses '''
|
|
|
|
def setUp(self):
|
|
|
|
self.user = models.User.objects.create_user(
|
|
|
|
'mouse', 'mouse@mouse.mouse', 'mouseword')
|
|
|
|
self.book = models.Edition.objects.create(title='Example Edition')
|
|
|
|
|
|
|
|
|
|
|
|
def test_create_comment(self):
|
|
|
|
comment = status_builder.create_comment(
|
|
|
|
self.user, self.book, 'commentary')
|
|
|
|
self.assertEqual(comment.content, 'commentary')
|