Hi all, I have a method calling Klass.create! two times with different arguments (this happens in a class reponsable for reading in a csv file)
I want to test those like this: in one test: Klass.should_receive(:create!).with(:name => "foo").once in another: Klass.should_receive(:create!).with(:name => "foo2").once This doesn't work because the 'once' is only about the create! call, it doesn't use the arguments to make the call unique. Can I make this work another way (not only should_receive(:create!).twice, I want to test the arguments). Thanks for any feedback. Ivo _______________________________________________ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-users