From 23f1efcc62d9ce989a5eb0beb087ffd9aa98c535 Mon Sep 17 00:00:00 2001 From: Artem Akymenko Date: Thu, 9 Jul 2026 14:06:27 +0000 Subject: [PATCH] refactor: rename integration test file, remove PR reference from docstring --- .../{test_integration_pr5.py => test_integration.py} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename tests/contracts/{test_integration_pr5.py => test_integration.py} (97%) diff --git a/tests/contracts/test_integration_pr5.py b/tests/contracts/test_integration.py similarity index 97% rename from tests/contracts/test_integration_pr5.py rename to tests/contracts/test_integration.py index 5737443..2fed590 100644 --- a/tests/contracts/test_integration_pr5.py +++ b/tests/contracts/test_integration.py @@ -1,9 +1,9 @@ -"""Integration tests for PR #5: Migrate First Consumer to Plugin Architecture. +"""Integration tests for the TTS Plugin Architecture. These tests verify: -1. Consumer Flow Test: consumer → plugin → engine → session → synthesis → result -2. Lifecycle Test: dispose, no leaks, error handling -3. Regression Test: old path vs new path equivalence +1. Consumer Flow: consumer → plugin → engine → session → synthesis → result +2. Lifecycle: dispose, no leaks, error handling +3. Regression: old path vs new path equivalence Tests use mock plugins to avoid requiring real TTS dependencies. """