mirror of
https://github.com/thoughtbot/shoulda-matchers.git
synced 2022-11-09 12:01:38 -05:00
12 lines
264 B
Ruby
12 lines
264 B
Ruby
|
module Shoulda
|
||
|
module Matchers
|
||
|
if RUBY_VERSION > "1.9"
|
||
|
require 'minitest/unit'
|
||
|
AssertionError = MiniTest::Assertion
|
||
|
else
|
||
|
require 'test/unit/assertionfailederror'
|
||
|
AssertionError = Test::Unit::AssertionFailedError
|
||
|
end
|
||
|
end
|
||
|
end
|