mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-02-18 03:11:52 +01:00
10 lines
219 B
Python
10 lines
219 B
Python
from django.test import TestCase
|
|
|
|
|
|
class TestX(TestCase):
|
|
fixtures = ["fixtures/categories.json", "fixtures/encoding_profiles.json"]
|
|
|
|
def test_X(self):
|
|
# add comment, check user is notified
|
|
pass
|