mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-25 17:55:16 +01:00
fb00f94bfa
* add more tests as STUBS
11 lines
240 B
Python
11 lines
240 B
Python
from django.test import TestCase
|
|
|
|
|
|
class TestX(TestCase):
|
|
fixtures = ["fixtures/categories.json", "fixtures/encoding_profiles.json"]
|
|
|
|
def test_X(self):
|
|
# add a few files, check search different cases that work
|
|
|
|
pass
|