mediacms/tests/settings/test_user_roles_TOWRITE.py
Markos Gogoulos fb00f94bfa
add more tests (#268)
* add more tests as STUBS
2021-08-17 00:01:52 +03:00

14 lines
378 B
Python

from django.test import TestCase
class TestX(TestCase):
fixtures = ["fixtures/categories.json", "fixtures/encoding_profiles.json"]
def test_X(self):
# test extra things editor can do
# test extra things manager can do
# test extra things admin can do
# test what single user cannot do (eg mess with other users content!)
pass