mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-25 09:44:32 +01:00
10 lines
269 B
Python
10 lines
269 B
Python
|
from django.test import TestCase
|
||
|
|
||
|
|
||
|
class TestX(TestCase):
|
||
|
fixtures = ["fixtures/categories.json", "fixtures/encoding_profiles.json"]
|
||
|
|
||
|
def test_X(self):
|
||
|
# test that adding a subtitle works for a video - needs to have a language set on Admin
|
||
|
pass
|