"""Tests for app/views/pipelines.py module. Covers the pipelines management UI page. """ from unittest.mock import patch import pytest @pytest.mark.integration class TestPipelinesView: """Integration tests for the /pipelines view route.""" def test_pipelines_page_returns_200(self, client): """GET /pipelines returns HTTP 200.""" response = client.get("/pipelines") assert response.status_code == 200 def test_pipelines_page_renders_html(self, client): """GET /pipelines returns HTML content with a proper html tag.""" response = client.get("/pipelines") assert response.status_code == 200 assert b"