我最近遇到了不同的教程,人们在其中同时使用mock
和mock_model
函数。
在控制器的 RSpec 教程中,他们使用该mock_model
功能,但在RSpec 的文档中,只有mock
功能,但没有mock_model
我尝试自己进行一些测试,但没有发现任何真正的区别,因为当我使用这两个功能中的任何一个时一切都很好,那么有什么区别吗?
我最近遇到了不同的教程,人们在其中同时使用mock
和mock_model
函数。
在控制器的 RSpec 教程中,他们使用该mock_model
功能,但在RSpec 的文档中,只有mock
功能,但没有mock_model
我尝试自己进行一些测试,但没有发现任何真正的区别,因为当我使用这两个功能中的任何一个时一切都很好,那么有什么区别吗?
正如 jenger 所说, mock_model 是为活动记录而构建的扩展:
这是 1.2.6 中的来源:
def mock_model(model_class, options_and_stubs = {})
id = options_and_stubs[:id] || next_id
options_and_stubs = options_and_stubs.reverse_merge({
:id => id,
:to_param => id.to_s,
:new_record? => false,
:errors => stub("errors", :count => 0)
})
m = mock("#{model_class.name}_#{id}", options_and_stubs)
m.__send__(:__mock_proxy).instance_eval <<-CODE
def @target.as_new_record
self.stub!(:id).and_return nil
self.stub!(:to_param).and_return nil
self.stub!(:new_record?).and_return true
self
end
def @target.is_a?(other)
#{model_class}.ancestors.include?(other)
end
def @target.kind_of?(other)
#{model_class}.ancestors.include?(other)
end
def @target.instance_of?(other)
other == #{model_class}
end
def @target.class
#{model_class}
end
CODE
yield m if block_given?
m
end
所以它很拗口,但它
它还用一堆东西扩展了模型实例。
首先,
mock_model
自动定义使用它创建的模型的唯一 ID。其次,它定义了方法to_param
(返回 id 的字符串表示形式)和new_record?
(返回 false)。