public
Description: Ports functionality of mock_model and stub_model from rspec-rails for developers using Mocha.
Homepage: http://rspec.lighthouseapp.com/projects/5645/tickets/275-mock_model-is-unusable-when-using-mocha
Clone URL: git://github.com/mislav/rspec-rails-mocha.git
name age message
file README.markdown Thu Feb 05 16:35:40 -0800 2009 Brought the plugin up to date with rspec 1.1.12. [steveluscher]
file init.rb Thu Aug 28 18:34:15 -0700 2008 import [mislav]
directory lib/ Thu Feb 05 16:35:40 -0800 2009 Brought the plugin up to date with rspec 1.1.12. [steveluscher]
directory spec/ Thu Feb 05 16:35:40 -0800 2009 Brought the plugin up to date with rspec 1.1.12. [steveluscher]
README.markdown

RSpec-Rails Mocha plugin

This brings functionality of mock_model and stub_model from rspec-rails to those using Mocha.

require 'rubygems'
gem 'rspec', '1.1.12'
require 'spec'
require 'spec/rails'
require 'rspec_rails_mocha'

describe "Mocha plugin" do
  it "#mock_model should use given ID" do
    person = mock_model(Person, :id => 66)

    person.should_not be_new_record
    person.id.should == 66
  end
end