9 lines
181 B
Python
9 lines
181 B
Python
import pytest
|
|
|
|
from apps.legal.models import LegalIndexPage
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_legal_index_sitemap_urls_empty():
|
|
assert LegalIndexPage().get_sitemap_urls() == []
|