統合テストには、工場の女の子とカピバラで minitest を使用しています。次のように、ファクトリーガールを使用してユーザーオブジェクトを作成しないと、カピバラは正常に動作します。
it "logs in a user successfully" do
visit signup_path
fill_in "Email", :with => "joey@ramones.com"
fill_in "Password", :with => "rockawaybeach"
fill_in "Password confirmation", :with => "rockawaybeach"
click_button "Create User"
current_path == "/"
page.text.must_include "Signed up!"
visit login_path
fill_in "Email", :with => "joey@ramones.com"
fill_in "Password", :with => "rockawaybeach"
check "Remember me"
click_button "Log in"
current_path == "/dashboard"
page.text.must_include "Logged in!"
page.text.must_include "Your Dashboard"
end
しかし、factory girl でユーザーを作成しようとするとすぐに、visit メソッドや click_button メソッドが機能しなくなるなど、奇妙なことが起こり始めます。たとえば、このテストには何も問題がないようです。
require "test_helper"
describe "Password resets" do
before(:each) do
@user = FactoryGirl.create(:user)
end
it "emails user when requesting password reset" do
visit login_path
click_link "password"
fill_in "Email", :with => user.email
click_button "Reset my password"
end
end
そして、これが私のfactory.rbです:
FactoryGirl.define do
factory :user do |f|
f.sequence(:email) { |n| "foo#{n}@example.com" }
f.password "secret"
f.password_confirmation "secret"
end
end
これが私が得ている実際のエラーです:
est_0001_emails user when requesting password reset 0:00:01.624 ERROR
undefined local variable or method `login_path' for #<#<Class:0x007fc2db48d820>:0x007fc2df337e40>
しかし、visit login_path
削除すると正常に動作します@user = FactoryGirl.create(:user)
これはカピバラのバグですか?それとも、ここで何か間違ったことをしていますか?