Failure/Error: self.stub(:content_for).with(:foo).and_return('bar') Stub :content_for received unexpected message :with with (:foo)
application_helper.rb
def yIEld_for(content_sym,default = '') content_for?(:content_sym) ? content_for(content_sym) : defaultend
application_helper_spec.rb
describe '#yIEld_for' do it 'should fetch the yIEld' do self.stub(:content_for).with(:foo).and_return('bar') helper.yIEld_for(:foo).should == 'bar' endend解决方法 尝试在助手上制作存根
it 'should fetch the yIEld' do helper.stub(:content_for).with(:foo).and_return('bar') helper.yIEld_for(:foo).should == 'bar'end
你的测试通过这个
def yIEld_for(content_sym,default = '') content_for(content_sym) ? content_for(content_sym) : defaultend总结
以上是内存溢出为你收集整理的ruby-on-rails – 如何使用rspec测试content_for全部内容,希望文章能够帮你解决ruby-on-rails – 如何使用rspec测试content_for所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)