| Summary: | Unit Test Runner is not working with test-unit-2.1.1 | ||
|---|---|---|---|
| Product: | [Technology] DLTK | Reporter: | Lars Benner <lars.benner> |
| Component: | Ruby | Assignee: | dltk.ruby-inbox <dltk.ruby-inbox> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | major | ||
| Priority: | P3 | CC: | akurtakov, isimluk, jpmat296 |
| Version: | unspecified | ||
| Target Milestone: | 5.5 | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| See Also: |
https://git.eclipse.org/r/68897 https://git.eclipse.org/c/dltk/org.eclipse.dltk.ruby.git/commit/?id=76ee25e3349d3b5d53d5da301deb79752016e821 |
||
| Whiteboard: | |||
|
Description
Lars Benner
A workaround is to mixin the missing symbols and methods
# compat mixin for Ruby 1.9.1 with test-unit gem in Eclipse
module Test
module Unit
module UI
SILENT = false
end
class AutoRunner
def output_level=(level)
self.runner_options[:output_level] = level
end
end
end
end
I committed to github.com a fix for this issue and created the merge request. https://github.com/eclipse/dltk.ruby/pull/2 New Gerrit change created: https://git.eclipse.org/r/68897 Gerrit change https://git.eclipse.org/r/68897 was merged to [master]. Commit: http://git.eclipse.org/c/dltk/org.eclipse.dltk.ruby.git/commit/?id=76ee25e3349d3b5d53d5da301deb79752016e821 Fixed in master now. |