ruby-on-rails – 来自测试台的RSpec模拟

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 来自测试台的RSpec模拟前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想测试RSpec从一个rails测试控制台的stubbing和mocking.可能吗 ?如果是,怎么样?

这是我试过的:

$rails c test
>require "./spec/spec_helper"
true
>source = double('source')
NoMethodError: undefined method `double' for main:Object

解决方法

您需要“rspec / mocks / standalone”,如 stated in the documentation.
原文链接:https://www.f2er.com/ruby/271915.html

猜你在找的Ruby相关文章