0

我的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

4

1 回答 1

0

普遍的共识似乎是这是不可能的,但如果有人证明我错了就会更新!

于 2012-08-23T15:25:22.473 回答