0

这段代码

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

我究竟做错了什么?

4

1 回答 1

0

我将它们移到描述块中并且它起作用了。

于 2013-05-24T15:30:42.513 回答