Add 'Partially Read' shelf
This commit is contained in:
parent
542957364c
commit
2b27889457
16 changed files with 116 additions and 4 deletions
|
@ -58,10 +58,12 @@ class User(TestCase):
|
|||
self.assertTrue("To Read" in names)
|
||||
self.assertTrue("Currently Reading" in names)
|
||||
self.assertTrue("Read" in names)
|
||||
self.assertTrue("Partially Read" in names)
|
||||
ids = [s.identifier for s in shelves]
|
||||
self.assertTrue("to-read" in ids)
|
||||
self.assertTrue("reading" in ids)
|
||||
self.assertTrue("read" in ids)
|
||||
self.assertTrue("partially-read" in ids)
|
||||
|
||||
def test_activitypub_serialize(self):
|
||||
activity = self.user.to_activity()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue