13 lines
188 B
Python
13 lines
188 B
Python
"""
|
|
tests for models
|
|
"""
|
|
|
|
from django.utils import unittest
|
|
from django.test.client import RequestFactory
|
|
|
|
from djeuscan.views import index
|
|
|
|
|
|
class ViewsTests(unittest.TestCase):
|
|
pass
|