remote /expofiles/ now for runserver dev

This commit is contained in:
Philip Sargent
2021-03-21 01:33:59 +00:00
parent 314f600523
commit 18b570d750
3 changed files with 20 additions and 2 deletions

View File

@@ -74,6 +74,16 @@ class SimpleTest(SimpleTestCase):
from django.http import HttpResponse
from django.urls import reverse
def test_import_urls(self):
from django.conf import settings
from django.conf.urls import url, include
from django.views.generic.base import RedirectView
from django.views.generic.edit import UpdateView
from django.views.generic.list import ListView
from django.contrib import admin
from django.urls import reverse, resolve
#class SimplePageTest(unittest.TestCase):
class PageTests(TestCase):
@classmethod