機能を実行すると、次のエラーが発生します。
undefined method `visit' for #<Cucumber::Rails::World:0x81b17ac0> (NoMethodError)
これは私の関連部分ですGemfile
。
group :development, :test do
gem "rspec-rails", ">= 2.0.0.beta.19"
gem "cucumber"
gem "cucumber-rails", ">= 0.3.2"
gem 'webrat', ">= 0.7.2.beta.1"
end
関連するstep_definition(重要ではないと思いますが)
When /^I create a movie Caddyshack in the Comendy genre$/ do
visit movies_path
click_link "Add Movie"
fill_in "Title", :with => "Caddyshack"
check "Comedy"
click_button "Save"
end
env.rbには、次のWebrat構成があります。
# […]
require 'webrat'
require 'webrat/core/matchers'
Webrat.configure do |config|
config.mode = :rails
config.open_error_files = false # Set to true if you want error pages to pop up in the browser
end
# […]
ここで足りないものはありますか?