simple_bdd icon indicating copy to clipboard operation
simple_bdd copied to clipboard

BDD for Ruby but simpler.

Results 4 simple_bdd issues
Sort by recently updated
recently updated
newest added

I thought it would be nice to be able to do things like: ``` ruby Given 'a user named', 'John' When 'I enter a password', 'password for John' ``` It...

It seems that RSpec is not defined on the initial declaration of the configuration item: ``` ruby module SimpleBdd class StepNotImplemented < StandardError; end RSpec.configuration.add_setting(:raise_error_on_missing_step_implementation, default: false) if defined?(::RSpec) ```...

When a step is defined, but not implemented, the message should show the line number of the step. Currently only the line number of the scenario is shown.