John Roth created BUILDR-673:
--------------------------------
Summary: MultiTest options are broken
Key: BUILDR-673
URL: https://issues.apache.org/jira/browse/BUILDR-673
Project: Buildr
Issue Type: Bug
Components: Test frameworks
Affects Versions: 1.4.12, 1.4.11
Environment: All
Reporter: John Roth
Documentation indicates that the ":options" to MultiTest is a hash with keys
like ":junit" or ":testng" and values a hash of options to be passed to that
test framework. But, in fact, the entire ":options" hash is passed to each
framework.
In particular, tests.rb line 392 (see context below) reads
"f.new(task,options)" but should read "f.new(task, framework_options)"
("framework_options" is otherwise an unread variable in tests.rb.)
def initialize(task, options) #:nodoc:
super
fail "Missing :frameworks option" unless options[:frameworks]
@frameworks = options[:frameworks].map do |f|
framework_options = (options[:options] || {})[f.to_sym] || {}
f.new(task, options)
end
end
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira