Add the platform-specific skip helpers to ActiveModel

This commit is contained in:
Robin Dupret 2015-02-27 14:29:54 +01:00
parent 586fe4471d
commit 823e4e9115
1 changed files with 9 additions and 0 deletions

View File

@ -14,6 +14,15 @@ require 'active_support/testing/autorun'
require 'mocha/setup' # FIXME: stop using mocha
# Skips the current run on Rubinius using Minitest::Assertions#skip
def rubinius_skip(message = '')
skip message if RUBY_ENGINE == 'rbx'
end
# Skips the current run on JRuby using Minitest::Assertions#skip
def jruby_skip(message = '')
skip message if defined?(JRUBY_VERSION)
end
# FIXME: we have tests that depend on run order, we should fix that and
# remove this method call.
require 'active_support/test_case'