aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config/test
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-11-19 19:50:07 +0100
committerTristan Darricau <github@nicofuma.fr>2014-11-20 21:12:22 +0100
commitdd4f2387fd2f4df0e1513c251c9044f5bef60618 (patch)
treecddc7f06ac3b2a54d6767e7e84bdd237ae073bf5 /phpBB/config/test
parent91daa736639fca67b2d330d0f20aabbd55eec2cf (diff)
downloadforums-dd4f2387fd2f4df0e1513c251c9044f5bef60618.tar
forums-dd4f2387fd2f4df0e1513c251c9044f5bef60618.tar.gz
forums-dd4f2387fd2f4df0e1513c251c9044f5bef60618.tar.bz2
forums-dd4f2387fd2f4df0e1513c251c9044f5bef60618.tar.xz
forums-dd4f2387fd2f4df0e1513c251c9044f5bef60618.zip
[ticket/12620] Use the test environment for the tests
PHPBB3-12620
Diffstat (limited to 'phpBB/config/test')
-rw-r--r--phpBB/config/test/config.yml5
-rw-r--r--phpBB/config/test/container/environment.yml3
-rw-r--r--phpBB/config/test/container/parameters.yml2
-rw-r--r--phpBB/config/test/container/services.yml2
-rw-r--r--phpBB/config/test/routing.yml2
5 files changed, 14 insertions, 0 deletions
diff --git a/phpBB/config/test/config.yml b/phpBB/config/test/config.yml
new file mode 100644
index 0000000000..1c17b08931
--- /dev/null
+++ b/phpBB/config/test/config.yml
@@ -0,0 +1,5 @@
+imports:
+ - { resource: ../default/config.yml }
+
+core:
+ require_dev_dependencies: true
diff --git a/phpBB/config/test/container/environment.yml b/phpBB/config/test/container/environment.yml
new file mode 100644
index 0000000000..40a3c7a683
--- /dev/null
+++ b/phpBB/config/test/container/environment.yml
@@ -0,0 +1,3 @@
+imports:
+ - { resource: services.yml }
+ - { resource: parameters.yml }
diff --git a/phpBB/config/test/container/parameters.yml b/phpBB/config/test/container/parameters.yml
new file mode 100644
index 0000000000..0447646806
--- /dev/null
+++ b/phpBB/config/test/container/parameters.yml
@@ -0,0 +1,2 @@
+imports:
+ - { resource: ../../default/container/parameters.yml }
diff --git a/phpBB/config/test/container/services.yml b/phpBB/config/test/container/services.yml
new file mode 100644
index 0000000000..b302f0f966
--- /dev/null
+++ b/phpBB/config/test/container/services.yml
@@ -0,0 +1,2 @@
+imports:
+ - { resource: ../../default/container/services.yml }
diff --git a/phpBB/config/test/routing.yml b/phpBB/config/test/routing.yml
new file mode 100644
index 0000000000..9ee3e5ae3a
--- /dev/null
+++ b/phpBB/config/test/routing.yml
@@ -0,0 +1,2 @@
+core.default:
+ resource: "../default/routing.yml"