11 lines
286 B
Python
11 lines
286 B
Python
from .generic import Url, UrlsTestCase
|
|
from ..views import RootView, generic
|
|
|
|
|
|
class TestCase(UrlsTestCase):
|
|
urls = (
|
|
Url('/', 'root', RootView.as_view()),
|
|
Url('/css-demo', 'css-demo', generic.TemplateView.as_view()),
|
|
Url('/djangoadmin', follow=True),
|
|
)
|