Files
mostovik-backend/tests/apps/parsers/test_dashboard_page.py
Aleksandr Meshchriakov b8a18d6da4
Some checks failed
CI/CD Pipeline / Quality Gate (push) Failing after 14s
CI/CD Pipeline / Build and Push Images (push) Has been skipped
CI/CD Pipeline / Deploy Dev in Dokploy (push) Has been skipped
CI/CD Pipeline / Internal Notify (push) Successful in 0s
feat: migrate parser data to source records
2026-05-19 20:21:31 +02:00

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)