11 lines
297 B
Python
11 lines
297 B
Python
"""Regression tests for retired standalone parser dashboard routes."""
|
|
|
|
from django.test import TestCase
|
|
|
|
|
|
class ParserDashboardPageTest(TestCase):
|
|
def test_dashboard_route_is_removed(self):
|
|
response = self.client.get("/dashboard")
|
|
|
|
self.assertEqual(response.status_code, 404)
|