mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-22 17:41:08 +00:00
Adds tests
This commit is contained in:
parent
c2742b4d80
commit
179dbd75aa
1 changed files with 22 additions and 0 deletions
|
@ -86,3 +86,25 @@ class AdminThemesViews(TestCase):
|
|||
|
||||
with self.assertRaises(PermissionDenied):
|
||||
view(request)
|
||||
|
||||
def test_test_theme(self):
|
||||
"""Testing testing testing test"""
|
||||
theme = models.Theme.objects.first()
|
||||
self.assertIsNone(theme.loads)
|
||||
request = self.factory.post("")
|
||||
request.user = self.local_user
|
||||
|
||||
views.test_theme(request, theme.id)
|
||||
theme.refresh_from_db()
|
||||
self.assertTrue(theme.loads)
|
||||
|
||||
def test_test_theme_broken(self):
|
||||
"""Testing test for testing when it's a bad theme"""
|
||||
theme = models.Theme.objects.create(name="bad theme", path="dsf/sdf/sdf.sdf")
|
||||
self.assertIsNone(theme.loads)
|
||||
request = self.factory.post("")
|
||||
request.user = self.local_user
|
||||
|
||||
views.test_theme(request, theme.id)
|
||||
theme.refresh_from_db()
|
||||
self.assertFalse(theme.loads)
|
||||
|
|
Loading…
Reference in a new issue