Files
django-dav-events/dav_base/tests/test_urls.py

10 lines
206 B
Python

from generic import Url, UrlsTestCase
from ..views import RootView
class TestCase(UrlsTestCase):
urls = (
Url('/', 'root', RootView.as_view()),
Url('/djangoadmin', follow=True),
)