I'm trying out rspec_on_rails with a very simple test:<br><br>...<br>&nbsp; specify &quot;product name should be 'test'&quot; do<br>&nbsp;&nbsp;&nbsp; Product.find( :all ).first.name.should_equal 'test'<br>&nbsp; end<br>...<br><br>with this fixture:
<br><br>first:<br>&nbsp; id: 1<br>&nbsp; name: test<br><br>When I run it:<br><br>.F<br><br>1)<br>'Given a generated product_spec.rb with fixtures loaded product name should be test' FAILED<br>&quot;test&quot; should equal &quot;test&quot;
<br>./spec/models/product_spec.rb:12:<br><br>Finished in 0.015563 seconds<br><br>2 specifications, 1 failure<br>rake aborted!<br><br>-------------------------<br><br>&quot;test&quot; should equal &quot;test&quot;, well, it does. Why is this failing?
<br><br>(Installed rspec gem, installed 0_7_4 of rspec on rails plugin)<br><br><br>Thanks<br>Adam<br><br><br>