我正在使用 Benedikt Diecke 在自定义 rspec 示例组上的帖子来测试活动模型序列化程序,但无法将其转换为使用 mocha 而不是 rspec 模拟。
http://benediktdeicke.com/2013/01/custom-rspec-example-groups/
该示例包括一个模拟将被序列化的模型类的通用方法,它使用 rspec 模拟 - 我如何将其转换为使用 mocha?
let(:resource) do
double(resource_name, attributes).tap do |double|
double.stub(:read_attribute_for_serialization) { |name| attributes[name] }
end
end