Я использую рассол 0.3.0 с рельсами, огурцом и монгоидом. Я обнаружил, что pickle0.3.0 автоматически находит ORM. Но в то время как я написал сценарий с огурцом и проверил его, он не нашел никаких шагов.
Вот образец:
Scenario: logging in user
Given the following users exists
|name|
|John|
|white|
Но не нашла шаг рассола
# create models from a table
Given(/^the following #{capture_plural_factory} exists?:?$/) do |plural_factory, table|
create_models_from_table(plural_factory, table)
end
и генерирует эту ошибку
You can implement step definitions for undefined steps with these snippets:
Given /^the following users should exists$/ do |table|
# table is a Cucumber::Ast::Table
pending # express the regexp above with the code you wish you had
end
Есть идеи?