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