made the test configuration inherit from the dev one by default in the skeleton

This commit is contained in:
Fabien Potencier 2010-06-15 09:33:52 +02:00
parent 1fbabff572
commit 14cb6dd77c
2 changed files with 2 additions and 4 deletions

View File

@ -11,12 +11,11 @@
http://www.symfony-project.org/schema/dic/symfony/profiler http://www.symfony-project.org/schema/dic/symfony/profiler-1.0.xsd"> http://www.symfony-project.org/schema/dic/symfony/profiler http://www.symfony-project.org/schema/dic/symfony/profiler-1.0.xsd">
<imports> <imports>
<import resource="config.xml" /> <import resource="config_dev.xml" />
</imports> </imports>
<zend:logger <zend:logger
priority="info" priority="info"
path="%kernel.logs_dir%/%kernel.environment%.log"
/> />
<kernel:test /> <kernel:test />

View File

@ -1,8 +1,7 @@
imports: imports:
- { resource: config.yml } - { resource: config_test.yml }
zend.logger: zend.logger:
priority: debug priority: debug
path: %kernel.logs_dir%/%kernel.environment%.log
kernel.test: ~ kernel.test: ~