Rails 統合テストを webrat から capybara に移行しています。に置き換えresponse.should
ますresponse.body.should
。require 'capybara/rails'
spec_helper.rb にも追加されました。ただし、というエラーがありますundefined method 'visit'
。いずれvisit
もエラーになります。エラーを引き起こす最初の 2 つのコードは次のとおりです。
describe "TestPaths" do
describe "GET /customerx_test_paths" do
before(:each) do
ul = FactoryGirl.build(:user_level, :sys_user_group_id => ug.id)
u = FactoryGirl.create(:user, :user_levels => [ul], :login => 'thistest', :password => 'password', :password_confirmation => 'password')
visit 'authentify/'
fill_in "login", :with => u.login
fill_in "password", :with => 'password'
click_button
end
#customer status category
it "should display customer status category index page" do
visit customer_status_categories_path
response.body.should have_selector("title", :content => "Customerx")
end
...
end
before ループは、以下の rspec ケースのシステムにログインするだけです。カピバラのコードの何が問題になっていますか? 手伝ってくれてありがとう。