这段代码
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
给我这个错误
#<NameError: undefined local variable or method
#>` 的 current_path'
我正在使用水豚版本 1.1.2
我究竟做错了什么?