mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 08:13:33 +01:00
13 lines
543 B
Python
13 lines
543 B
Python
|
from django.test import TestCase
|
||
|
|
||
|
|
||
|
class TestX(TestCase):
|
||
|
fixtures = ["fixtures/categories.json", "fixtures/encoding_profiles.json"]
|
||
|
|
||
|
def test_X(self):
|
||
|
# test edit media that it works, by setting different values. then check on the API response
|
||
|
# check that a user cannot set status upon different scenarios (eg on settings PORTAL_WORKFLOW)
|
||
|
# check that changint thumbnail time produces a different thumbnail?
|
||
|
# check adding custom poster, and that it appears instead of the autogenerated?
|
||
|
pass
|