plugged up some testing holes with explicit placeholder urls in views and unit tests; most tests now pass

This commit is contained in:
Disco DeDisco
2026-01-02 00:00:56 -05:00
parent 3081cd85b1
commit 47bf26ce49
5 changed files with 31 additions and 18 deletions

View File

@@ -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'),
]