I was looking over some of my specs.<br>I was thinking that the following:<br><br>@game.should_receive(:name).and_return('The Battle for Blaze')<br>@game.should_receive(:people).and_return(5000000) <br>@game.should_receive
(:activated).and_return(true) <br> <br>Would it look cleaner if I could do this instead?<br><br>@game.should_recieve_and_return(<br> :name => 'The Battle for Blaze'<br> :people => 5000000<br> :activated => true)
<br><br>Opinions?<br>