I&#39;m using rSpec 1.1.3 and ZenTest 3.9.1 and every time I run a test I get &quot;All Tests Passed&quot; ... perhaps I should just leave it that way? :p<br><br>Anyways, I&#39;ve attempted to construct my own ~/.autotest file and it&#39;s extremely basic, but for some reason whenever I make one test fail (on purpose) it still kicks off the :green hook rather than the :red one ... <br>
<br>Anybody have any ideas?<br><br><div style="margin-left: 40px;"># My ~/.autotest file<br>require &#39;autotest/redgreen&#39;<br><br>module Autotest::Growl<br>&nbsp; def self.growl(title, msg, image=&quot;&quot;, priority=0, sticky=&quot;&quot;)<br>
&nbsp;&nbsp;&nbsp; system &quot;growlnotify -n autotest #{sticky} --priority #{priority} --message &#39;#{msg}&#39; &#39;#{title}&#39;&quot;<br>&nbsp; end<br>&nbsp; <br>&nbsp; Autotest::add_hook :green do |at|<br>&nbsp;&nbsp;&nbsp; growl &quot;Tests Passed!&quot;, &quot;All tests passed!&quot;<br>
&nbsp; end<br>&nbsp; <br>&nbsp; Autotest::add_hook :red do |at|<br>&nbsp;&nbsp;&nbsp; growl &quot;Tests Failed!&quot;, &quot;Tests have failed!&quot;<br>&nbsp; end<br>end<br clear="all"></div><br>-- <br>Bryan Ray<br><a href="http://www.bryanray.net">http://www.bryanray.net</a><br>
<br>&quot;Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.&quot;