I'm going through Peepcode's Rspec Basics for an overview.<br><br>He's just doing a simple spec:<br><br>class PeepCode<br> end<br><br>describe PeepCode do<br> it "should be awsome" do <br> end<br>
end<br><br>So running spec spec/simple_spec.rb should produce according to his screen cast:<br>1 example, 0 failures, 1 not implemented<br><br>but I only recieve:<br>1 example, 0 failures<br><br>Also spec spec/simple_spec.rb --format will fail
<br>/usr/local/lib/ruby/1.8/optparse.rb:451:in `parse': missing argument: --format (OptionParser::MissingArgument)<br><br>RSpec 1.0.8<br>ZenTest 3.6.1<br>