forked from mirrors/bookwyrm
Adds necessary user to inbox tests
This commit is contained in:
parent
94764160cc
commit
45926eed34
1 changed files with 9 additions and 0 deletions
|
@ -15,6 +15,15 @@ class Inbox(TestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
""" basic user and book data """
|
""" basic user and book data """
|
||||||
self.client = Client()
|
self.client = Client()
|
||||||
|
local_user = models.User.objects.create_user(
|
||||||
|
"mouse@example.com",
|
||||||
|
"mouse@mouse.com",
|
||||||
|
"mouseword",
|
||||||
|
local=True,
|
||||||
|
localname="mouse",
|
||||||
|
)
|
||||||
|
local_user.remote_id = "https://example.com/user/mouse"
|
||||||
|
local_user.save(broadcast=False)
|
||||||
self.create_json = {
|
self.create_json = {
|
||||||
"id": "hi",
|
"id": "hi",
|
||||||
"type": "Create",
|
"type": "Create",
|
||||||
|
|
Loading…
Reference in a new issue