我的features/support/env.rb
文件中有以下内容:
require 'declarative_authorization/maintenance'
World(Authorization::TestHelper)
我在功能文件中有这个:
When I view the list of users
Then I see the list of users page
这在一个步骤文件中:
When /^I view the list of users$/ do
without_access_control{ visit users_path }
end
Then /^I see the list of users page$/ do
current_path.should eq(users_path)
end
一切运行良好,直到我标记该功能@javascript
,然后我收到错误:
expected: "/users"
got: "/users/sign_in"
谁能告诉我without_access_control
在模式下跑步时如何尊重@javascript
?
我认为问同样问题的另一种方式是如何让声明式授权的内置测试助手without_access_control
在什么rack_test
时候使用js=true
?