mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-02-22 13:22:01 +01:00
10 lines
260 B
Python
10 lines
260 B
Python
from django.test import TestCase
|
|
|
|
|
|
class TestX(TestCase):
|
|
fixtures = ["fixtures/categories.json", "fixtures/encoding_profiles.json"]
|
|
|
|
def test_X(self):
|
|
# test contact form, send a message and check on email box that it is received
|
|
pass
|