diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2015-02-27 14:29:54 +0100 |
---|---|---|
committer | Robin Dupret <robin.dupret@gmail.com> | 2015-03-02 14:05:07 +0100 |
commit | 823e4e91158a7e50a56fb92519fc50917b3b33fd (patch) | |
tree | 1ba00deeb6cb50dc33445b3e8b753914e001e520 /activemodel/test/cases | |
parent | 586fe4471d3a71b7500f734d26b28427332b6e43 (diff) | |
download | rails-823e4e91158a7e50a56fb92519fc50917b3b33fd.tar.gz rails-823e4e91158a7e50a56fb92519fc50917b3b33fd.tar.bz2 rails-823e4e91158a7e50a56fb92519fc50917b3b33fd.zip |
Add the platform-specific skip helpers to ActiveModel
Diffstat (limited to 'activemodel/test/cases')
-rw-r--r-- | activemodel/test/cases/helper.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/activemodel/test/cases/helper.rb b/activemodel/test/cases/helper.rb index 4ce6103593..3276f69f09 100644 --- a/activemodel/test/cases/helper.rb +++ b/activemodel/test/cases/helper.rb @@ -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' |