mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-01-09 15:58:19 +01:00
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
|