此代码
describe "HomePages" do
subject {page}
before { visit root_path }
describe "navigation" do
describe "click signup" do
before {find_button('Sign up').click}
current_path.should == sign_up_path
end
end
end
给我这个错误
对于#&gt;`, #<NameError: undefined local variable or method
current_path'
我正在使用capybara版本1.1.2
我做错了什么?
答案 0 :(得分:0)
我把它们移到了一个描述块中然后就可以了。