mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 16:23:35 +01:00
11 lines
244 B
Python
11 lines
244 B
Python
|
from django.test import TestCase
|
||
|
|
||
|
|
||
|
class TestX(TestCase):
|
||
|
fixtures = ["fixtures/categories.json", "fixtures/encoding_profiles.json"]
|
||
|
|
||
|
def test_X(self):
|
||
|
# report media, check on mailbox that admin/user are notified
|
||
|
|
||
|
pass
|