mirror of
https://github.com/Hopiu/django-embed-video.git
synced 2026-05-27 13:33:58 +00:00
20 lines
471 B
Python
20 lines
471 B
Python
import os
|
|
|
|
from unittest import main, TestCase
|
|
|
|
from django.http import HttpRequest
|
|
from django.template.base import Template
|
|
from django.template.context import RequestContext
|
|
|
|
from ..fields import EmbedVideoField, EmbedVideoFormField
|
|
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'embed_video.tests.django_settings'
|
|
|
|
|
|
class EmbedVideoFieldsTestCase(TestCase):
|
|
def test_field_validation(self):
|
|
self.assertEqual(True, False)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|