mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 08:13:33 +01:00
fb00f94bfa
* add more tests as STUBS
12 lines
380 B
Python
12 lines
380 B
Python
from django.test import TestCase
|
|
|
|
|
|
class TestX(TestCase):
|
|
fixtures = ["fixtures/categories.json", "fixtures/encoding_profiles.json"]
|
|
|
|
def test_X(self):
|
|
# check that all links exist, on anonymous user
|
|
# check that all links exist, on logged in user, plus the user specific
|
|
# for editor/manager/admin, check that the related links exist
|
|
pass
|