create tests (with app/kernel fixtures) for menu composer #217

This commit is contained in:
2014-10-07 00:24:50 +02:00
parent d66583758a
commit 31779fec4e
9 changed files with 102 additions and 13 deletions

View File

@@ -0,0 +1,11 @@
framework:
secret: Not very secret
router: { resource: "%kernel.root_dir%/config/routing.yml" }
form: true
csrf_protection: true
session: ~
default_locale: fr
translator: { fallback: fr }
profiler: { only_exceptions: false }
templating:
engines: ['twig']

View File

@@ -0,0 +1,7 @@
imports:
- { resource: config.yml }
framework:
test: ~
session:
storage_id: session.storage.filesystem

View File

@@ -0,0 +1,24 @@
hello_bundle:
resource: "@CLChillMainBundle/Resources/config/routing.yml"
chill_main_dummy_0:
pattern: /dummy
defaults: { _controller: CLChillMainBundle:Default:index }
options:
menus:
dummy0:
order: 50
label: 'test0'
dummy1:
order: 50
label: test dummy 1
chill_main_dummy_1:
pattern: /dummy1
defaults: { _controller: CLChillMainBundle:Default:index }
options:
menus:
dummy0:
order: 50
label: 'test1'
helper: 'great helper'