module RSpec::Mocks::TestDouble

def assign_stubs(stubs)

def assign_stubs(stubs)
  stubs.each_pair do |message, response|
    stub(message).and_return(response)
  end
end