gpt4 book ai didi

ruby-on-rails - Rspec 中类的未定义方法

转载 作者:行者123 更新时间:2023-12-04 05:16:00 25 4
gpt4 key购买 nike

以下 RSpec 2 测试..

describe "GET new" do
describe "gets a report form" do
xhr :get, :new, :post_id => @post
response.should be_success
end
end

给出了这个很好的错误:
undefined method xhr for #<Class:0xb5c72404> (NoMethodError)
知道出了什么问题吗?

最佳答案

事实证明你必须使用 it describe 中的声明堵塞。然后错误消失。如果您没有正确使用describeit块,然后 RSpec 会产生各种奇怪的错误。这是正确的代码:

describe "GET new" do
it "gets a report form" do
xhr :get, :new, :post_id => @post
response.should be_success
end
end

关于ruby-on-rails - Rspec 中类的未定义方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7158165/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com