Can somebody explain the rationale behind this specification?
describe Buildr::TestTask do
...
it 'should not use the test compile dependencies' do
define('foo') { test.compile.using(:javac).with 'group:id:jar:1.0' }
project('foo').test.dependencies.should_not
include(artifact('group:id:jar:1.0'))
end
...
endOne of my recent commits<http://github.com/apache/buildr/commit/44a12c63cf1ce390e89db9921fe5ea9e960ce054>breaks it. I think it's wrong but maybe I'm missing something. alex
