<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> ob.should eql?('foo')<br>instead of:<br>
ob.should eql('foo')<br>or:<br> ob.should == 'foo'<br><br>As far as I can see, this is roughly equivalent to:<br> ob.should false<br><br>Neither eql?('foo') nor false causes the spec to fail; this is worrisome, as I can imagine accidentally including that ? again; and I'd hate it to mask a test failure.
<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/? Seems like I might have to modify rails_rspec.rb in lib/autotest. We were considering separating our acceptance tests from the rest.
<br clear="all"><br> - Geoffrey<br>-- <br>Geoffrey Wiseman<br>