Author: boisvert
Date: Tue Oct 19 13:57:02 2010
New Revision: 1024235
URL: http://svn.apache.org/viewvc?rev=1024235&view=rev
Log:
Add missing expectation (test.compile) for run task dependency
Modified:
buildr/trunk/spec/core/run_spec.rb
Modified: buildr/trunk/spec/core/run_spec.rb
URL:
http://svn.apache.org/viewvc/buildr/trunk/spec/core/run_spec.rb?rev=1024235&r1=1024234&r2=1024235&view=diff
==============================================================================
--- buildr/trunk/spec/core/run_spec.rb (original)
+++ buildr/trunk/spec/core/run_spec.rb Tue Oct 19 13:57:02 2010
@@ -67,6 +67,7 @@ describe Project, :run do
it 'should depend on project''s compile and test.compile task' do
define 'foo'
project('foo').run.prerequisites.should include(project('foo').compile)
+ project('foo').run.prerequisites.should include(project('foo').test)
end
it 'should be local task' do