plugged up some testing holes with explicit placeholder urls in views and unit tests; most tests now pass
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
from django.contrib import admin
|
||||
from django.urls import path
|
||||
from apps.dashboard.views import home_page
|
||||
from apps.dashboard import views
|
||||
|
||||
urlpatterns = [
|
||||
path('admin/', admin.site.urls),
|
||||
path('', home_page, name='home'),
|
||||
path('', views.home_page, name='home'),
|
||||
path('apps/dashboard/the-only-list-in-the-world/', views.view_list, name='view_list'),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user