作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 Rails 很陌生。我一直在使用 RSpec 开发我的应用程序。我刚刚关注了 tutorial Facebooker2 并添加了 before_filter
用于身份验证。
#app/controller/application_controller.rb
before_filter :ensure_authenticated
#spec/controllers/answers_controller_spec.rb
describe "GET index" do
it "assigns all answers as @answers" do
get :index, {}, valid_session
assigns(:answers).should include(answers(:reading))
end
end
#spec/controllers/answers_controller_spec.rb
def valid_session
{}
end
最佳答案
如果您不关心测试实际的身份验证而只想模拟一个有效的 session ,您可以删除过滤器:
controller.stub(:ensure_authenticated).and_return(true)
关于ruby-on-rails-3 - 如何在 rails 3 中使用 Facebooker2 对 valid_session 进行 rspec ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11081105/
我在 RSpec 中找不到 valid_session 的例子,现在我所有的脚手架测试在添加授权后都被破坏了。 通过 Michael Hartl 的 Rails 教程,我正在使用描述的身份验证 her
我对 Rails 很陌生。我一直在使用 RSpec 开发我的应用程序。我刚刚关注了 tutorial Facebooker2 并添加了 before_filter用于身份验证。 #app/contro
我是一名优秀的程序员,十分优秀!