GUI Tool for Behat users.
This tool helps Product Owners to manage their features. They can:
- list their features and know the state of each feature
- filter features by state, tag, etc...
- edit features
- add new features
This tool is deprecated. Please prefer the standalone BddWizard
You can see a demo here
### Update your composer file:
"require-dev": {
"halleck45/behat-wizard-bundle": "dev-master"
}
# app/AppKernel.php
if (in_array($this->getEnvironment(), array('dev', 'test'))) {
// ...
$bundles[] = new Hal\Bundle\BehatWizard\HalBehatWizardBundle();
}
Edit your routing configuration:
# app/config/routing.yml
HalBehatWizard:
resource: "@HalBehatWizardBundle/Resources/config/routing.yml"
prefix: /
Add the following lines to your config.yml file:
parameters:
behat.paths.base: /path/to/project/
behat.paths.features: /path/to/project/features
behat.paths.reports: /path/to/project/reports
Note that you need to run Behat with the junit formater parameter, in order to generate reports in JUnit format:
$ behat -f junit --out /path/to/project/reports
If you use a configuration file for Behat, you can use this configuration:
formatter:
name: pretty,junit
parameters:
output_path: null,build/behat
php app/console assets:install --symlink web
php app/console assetic:dump web
And edit your config file:
assetic:
(...)
bundles: [ HalBehatWizardBundle ]
Remember to active the translator:
# app/config/config.yml
framework:
translator: { fallback: en }
### Use it !
Just go to /app_dev.php/behat/wizard/list
-> it's probably due to Twig's cache. Add the following rule to your config.yml
twig:
cache: false