1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Refs #25916 -- Isolated sitemap.test_utils tests

This commit is contained in:
David Smith
2021-02-17 19:19:27 +00:00
committed by Carlton Gibson
parent 2ccc0b22db
commit 2ce03a2bac
2 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
from django.contrib.sitemaps import views
from django.urls import path
urlpatterns = [
path(
'sitemap-without-entries/sitemap.xml', views.sitemap,
{'sitemaps': {}}, name='django.contrib.sitemaps.views.sitemap',
),
]