Author: vborja
Date: Fri Sep  5 09:01:45 2008
New Revision: 692474

URL: http://svn.apache.org/viewvc?rev=692474&view=rev
Log:
test_spec was expecting bar:test to be run before foo:test

Modified:
    incubator/buildr/trunk/spec/test_spec.rb

Modified: incubator/buildr/trunk/spec/test_spec.rb
URL: 
http://svn.apache.org/viewvc/incubator/buildr/trunk/spec/test_spec.rb?rev=692474&r1=692473&r2=692474&view=diff
==============================================================================
--- incubator/buildr/trunk/spec/test_spec.rb (original)
+++ incubator/buildr/trunk/spec/test_spec.rb Fri Sep  5 09:01:45 2008
@@ -684,7 +684,7 @@
   it 'should stop at first failure' do
     define('foo') { test { fail } }
     define('bar') { test { fail } }
-    lambda { task('test').invoke rescue nil }.should 
run_tasks('bar:test').but_not('foo:test')
+    lambda { task('test').invoke rescue nil }.should 
run_tasks('foo:test').but_not('bar:test')
   end
 
   it 'should ignore failure if options.test is :all' do


Reply via email to