10 lines
206 B
Python
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),
|
|
)
|