mirror of
https://github.com/edgecase/ruby_koans.git
synced 2026-04-15 07:23:19 -04:00
Now supporting Test::Unit as well under Ruby 1.9.
This commit is contained in:
@@ -51,7 +51,11 @@ module EdgeCase
|
|||||||
end
|
end
|
||||||
|
|
||||||
in_ruby_version("1.9") do
|
in_ruby_version("1.9") do
|
||||||
AssertionError = MiniTest::Assertion
|
if defined?(MiniTest)
|
||||||
|
AssertionError = MiniTest::Assertion
|
||||||
|
else
|
||||||
|
AssertionError = Test::Unit::AssertionFailedError
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def initialize
|
def initialize
|
||||||
|
|||||||
Reference in New Issue
Block a user