I do agree, That's what we're gonna do. it was just an example. But what if we want to test find_thingy(in model spec) to make sure the :conditions is set properly?
R Pat Maddox wrote: > Rémi Gagnon <[EMAIL PROTECTED]> writes: > >> Product.should_receive(:find).with(:conditions => >> 'vaat_id_type_statut_pcpa == 7) >> >> I'm pretty sure this is not the right synthax. >> >> Any suggestions? >> >> Rémi > > ewww......brittle, ugly, and not encapsulated. Why don't you create a > method to wrap this find? Product.find_thingy(1, 2). Then mocking > becomes trivial and clean: > Product.should_receive(:find_thingy).with(1,2) > > Pat -- Posted via http://www.ruby-forum.com/. _______________________________________________ rspec-users mailing list [email protected] http://rubyforge.org/mailman/listinfo/rspec-users
