Simple BDD offers basic Behaviour Driven Development language syntax. It enables tests to take steps to become more declarative than imperative by hiding the implementation and revealing test intent. It can be used in any test framework as it's just a way to keep the collaborative business language within a test by calling methods which directly relate to the step in the test.
Add this line to your application's Gemfile:
gem 'simple_bdd'
And then execute:
$ bundle
Or install it yourself as:
$ gem install simple_bdd
The following will call the commented method in scope of the current class or module. (Every RSpec describe
block is an anonymous class.)
[Gg]iven "Some state" # calls some_state
[Ww]hen "this happens" # calls this_happens
[Tt]hen "this change occurs" # calls this_change_occurs
[Bb]ut "this other thing still happens" # calls this_other_thing_still_happens
[Aa]nd "this other side effect happens" # calls this_other_side_effect_happens
Some additional methods allow you to group related behaviors in your tests:
Given "Admin is signed in"
behavior "admin can manage widgets" do
When "Admin views all widgets"
Then "Admin sees the first widget"
end
behavior "admin can manage factories" do
When "Admin views all factories"
Then "Admin sees the first factory"
end
Any of the following names can be substituted for behavior
above:
and_by
behaves_like
behavior
behaviour
by
it_also
To use SimpleBDD in your tests, simply add the following line to your spec helper:
require 'simple_bdd/rspec'
Or, if you want to have more control, you can do this instead:
require 'simple_bdd'
RSpec.configure do |config|
config.include SimpleBdd
end
By default, SimpleBDD marks specs pending on missing step implementations. You can change this behavior to raise an error instead in the spec helper:
RSpec.configure do |config|
config.raise_error_on_missing_step_implementation = true
end
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request