I&#39;m going through Peepcode&#39;s Rspec Basics for an overview.<br><br>He&#39;s just doing a simple spec:<br><br>class PeepCode<br> end<br><br>describe PeepCode do<br>&nbsp; it &quot;should be awsome&quot; do&nbsp;  <br>&nbsp; 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&#39;: missing argument: --format (OptionParser::MissingArgument)<br><br>RSpec 1.0.8<br>ZenTest 3.6.1<br>