From 3f678af5f34d9fd9a635d6ce82bd41285ff71be1 Mon Sep 17 00:00:00 2001 From: Tristan Darricau Date: Sun, 10 Aug 2014 12:06:50 +0200 Subject: [ticket/12620] Update tests PHPBB3-12620 --- tests/di/fixtures/config/production/environment.yml | 14 ++++++++++++++ tests/di/fixtures/config/services.yml | 14 -------------- tests/di/fixtures/other_config/production/environment.yml | 14 ++++++++++++++ tests/di/fixtures/other_config/services.yml | 14 -------------- 4 files changed, 28 insertions(+), 28 deletions(-) create mode 100644 tests/di/fixtures/config/production/environment.yml delete mode 100644 tests/di/fixtures/config/services.yml create mode 100644 tests/di/fixtures/other_config/production/environment.yml delete mode 100644 tests/di/fixtures/other_config/services.yml diff --git a/tests/di/fixtures/config/production/environment.yml b/tests/di/fixtures/config/production/environment.yml new file mode 100644 index 0000000000..f2a22ae109 --- /dev/null +++ b/tests/di/fixtures/config/production/environment.yml @@ -0,0 +1,14 @@ +parameters: + core: true + +services: + config.php: + synthetic: true + + dbal.conn: + class: phpbb\db\driver\factory + arguments: + - @service_container + + dispatcher: + class: phpbb\db\driver\container_mock diff --git a/tests/di/fixtures/config/services.yml b/tests/di/fixtures/config/services.yml deleted file mode 100644 index f2a22ae109..0000000000 --- a/tests/di/fixtures/config/services.yml +++ /dev/null @@ -1,14 +0,0 @@ -parameters: - core: true - -services: - config.php: - synthetic: true - - dbal.conn: - class: phpbb\db\driver\factory - arguments: - - @service_container - - dispatcher: - class: phpbb\db\driver\container_mock diff --git a/tests/di/fixtures/other_config/production/environment.yml b/tests/di/fixtures/other_config/production/environment.yml new file mode 100644 index 0000000000..c299bfc648 --- /dev/null +++ b/tests/di/fixtures/other_config/production/environment.yml @@ -0,0 +1,14 @@ +parameters: + other_config: true + +services: + config.php: + synthetic: true + + dbal.conn: + class: phpbb\db\driver\factory + arguments: + - @service_container + + dispatcher: + class: phpbb\db\driver\container_mock diff --git a/tests/di/fixtures/other_config/services.yml b/tests/di/fixtures/other_config/services.yml deleted file mode 100644 index c299bfc648..0000000000 --- a/tests/di/fixtures/other_config/services.yml +++ /dev/null @@ -1,14 +0,0 @@ -parameters: - other_config: true - -services: - config.php: - synthetic: true - - dbal.conn: - class: phpbb\db\driver\factory - arguments: - - @service_container - - dispatcher: - class: phpbb\db\driver\container_mock -- cgit v1.2.1