<span style="font-style: italic;">False Positives</span><br>I just discovered how easy it was to create a false positive when I, trying my first RSpec test, did this:<br>&nbsp;&nbsp; ob.should eql?(&#39;foo&#39;)<br>instead of:<br>&nbsp;&nbsp; 
ob.should eql(&#39;foo&#39;)<br>or:<br>&nbsp;&nbsp; ob.should == &#39;foo&#39;<br><br>As far as I can see, this is roughly equivalent to:<br>&nbsp; ob.should false<br><br>Neither eql?(&#39;foo&#39;) nor false causes the spec to fail; this is worrisome, as I can imagine accidentally including that ? again; and I&#39;d hate it to mask a test failure.&nbsp; 
<br><br><span style="font-style: italic;">Autotest</span><br>Out of curiosity, does anyone know how to get autotest to pick up new folders under spec/?&nbsp; Seems like I might have to modify rails_rspec.rb in lib/autotest.&nbsp; We were considering separating our acceptance tests from the rest.
<br clear="all"><br>&nbsp; - Geoffrey<br>-- <br>Geoffrey Wiseman<br>