Come Jenger detto mock_model è un'estensione costruito per record attivo:
Questa è la fonte in 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
Quindi è un bel boccone, ma
- stub l'id con il successivo in sequenza
- stub to_param
- stub new_record? con false
- errori stub quindi pensa che ci siano errori
Si estende anche l'istanza di modello con un sacco di roba.
fonte
2009-08-12 09:30:30
Per le persone che trovano questa domanda classifica in Google per "rspec mock_model", la migliore documentazione può essere trovata su https://www.relishapp.com/rspec/rspec-rails/docs/mocks/mock-model –