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