使用 Shoulda Ruby on Rails 获取 HTTP 响应

发布于 2024-09-17 16:32:01 字数 272 浏览 7 评论 0原文

我正在从 rspec 迁移到 Shoulda,但似乎无法访问 http 响应。有人可以指出我可能做错了什么吗?

  context "doing somethin" do
      setup do
        get :index
      end
      @response.body
      should respond_with :success
  end

当我运行此命令时,我收到一条错误消息,指出 @response 是一个空对象。

I'm migrating over to shoulda from rspec and I can't seem to get access to the http response. Can someone point out what I may be doing wrong?

  context "doing somethin" do
      setup do
        get :index
      end
      @response.body
      should respond_with :success
  end

When i run this i get an error saying that @response is a nill object.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

零度℉ 2024-09-24 16:32:01

如果您想访问响应,您应该首先将其包装成“应该”,如下所示:

context "doing somethin" do
  setup do
    get :index
  end

  should "i access..." do
   assert response.status, 200
  end
end

就像您尝试在测试之外使用响应一样,每个应该代表一个测试用例,而上下文就像是中的 before(:each)规格。

If you want to access the response you should first wrap into a "should" like this:

context "doing somethin" do
  setup do
    get :index
  end

  should "i access..." do
   assert response.status, 200
  end
end

It's like you try to use the response outside a test, each should represents a test case, and a context is like a before(:each) in rspec.

千纸鹤带着心事 2024-09-24 16:32:01

我相信shoulda语法是:

should_respond_with:success

而不是:

should respond_with:success

I believe the shoulda syntax is:

should_respond_with :success

instead of:

should respond_with :success

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文