mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 08:13:33 +01:00
fb00f94bfa
* add more tests as STUBS
14 lines
378 B
Python
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
|