mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 00:03:28 +01:00
fb00f94bfa
* add more tests as STUBS
12 lines
309 B
Python
12 lines
309 B
Python
from django.test import TestCase
|
|
|
|
|
|
class TestX(TestCase):
|
|
fixtures = ["fixtures/categories.json", "fixtures/encoding_profiles.json"]
|
|
|
|
def test_X(self):
|
|
# test what is the default portal workflow
|
|
# change it and make sure nothing strange happens (public/unlisted/private)
|
|
|
|
pass
|