mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-12-13 10:30:42 +01:00
10 lines
290 B
Python
10 lines
290 B
Python
|
from django.test import TestCase
|
||
|
|
||
|
|
||
|
class TestX(TestCase):
|
||
|
fixtures = ["fixtures/categories.json", "fixtures/encoding_profiles.json"]
|
||
|
|
||
|
def test_X(self):
|
||
|
# check that links exist from index page and pages are loading and only admins/editors/managers can see them
|
||
|
pass
|