From 781c6f6521f0f1d2f1306618a3d76835ec30529c Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Mon, 15 Apr 2024 07:19:53 +0200 Subject: [PATCH] [TASK] Separate the fixture TypoScript into setup and constants (#1225) To prepare for more extended functional controller tests, we now have a dedicated folder for fixture TypoScript setup, allowing us to have a clear separation between setup and constants. --- .../Fixtures/TypoScript/{ => Setup}/Rendering.typoscript | 0 Tests/Functional/Controller/TeaControllerTest.php | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename Tests/Functional/Controller/Fixtures/TypoScript/{ => Setup}/Rendering.typoscript (100%) diff --git a/Tests/Functional/Controller/Fixtures/TypoScript/Rendering.typoscript b/Tests/Functional/Controller/Fixtures/TypoScript/Setup/Rendering.typoscript similarity index 100% rename from Tests/Functional/Controller/Fixtures/TypoScript/Rendering.typoscript rename to Tests/Functional/Controller/Fixtures/TypoScript/Setup/Rendering.typoscript diff --git a/Tests/Functional/Controller/TeaControllerTest.php b/Tests/Functional/Controller/TeaControllerTest.php index 219c4ed..2006895 100644 --- a/Tests/Functional/Controller/TeaControllerTest.php +++ b/Tests/Functional/Controller/TeaControllerTest.php @@ -28,7 +28,7 @@ final class TeaControllerTest extends FunctionalTestCase $this->setUpFrontendRootPage(1, [ 'setup' => [ 'EXT:fluid_styled_content/Configuration/TypoScript/setup.typoscript', - 'EXT:tea/Tests/Functional/Controller/Fixtures/TypoScript/Rendering.typoscript', + 'EXT:tea/Tests/Functional/Controller/Fixtures/TypoScript/Setup/Rendering.typoscript', ], ]); }