![]() |
|
sfBehatPlugin - 1.0.0Behavior Driven Development in symfony |
|
Cucumber-style BDD in symfony.
sfBehatPlugin is a plugin for symfony applications. It help to write Cucumber-like Behat features to test symfony applications.
Use this to install as a plugin in a symfony app:
$ symfony plugin:install sfBehatPlugin
Use this to install as a plugin in a symfony app:
$ cd plugins && git clone git://github.com/everzet/sfBehatPlugin.git
Use this if you prefer to use git submodules for plugins:
$ git submodule add git://github.com/everzet/sfBehatPlugin.git plugins/sfBehatPlugin
and enable plugin in your ProjectConfigurations class.
After installation, you need to create features folders for your applications inside symfony's test folder. To do this, simply run:
symfony behat:init frontend
where frontend is your application name.
To begin with Behat, you need to create your first feature file. Run:
symfony behat:generate-feature frontend main
where frontend & main is your application & module names to test
You can either run all app tests with:
behat test/features/frontend
or specific feature with:
behat test/features/frontend/main.feature
or all frontend features with simply:
behat
You can create new steps simply by placing definitions in any *.php file under steps/ folder in your app features.
sfBehatPlugin has base steps to run over your application. One of them is /^I am on(?: the)? (.*)$/. This step tries to load specified page as is, but you can specify path manually in support/paths.php:
<?php
$this->pathTo = function($page) use($world) {
switch ($page) {
case 'homepage': return '/';
case 'articles list': return '/articles';
default: $page;
}
};
Behat is maintained by ever.zet http://github.com/everzet