From 6384933994a494a1ea44cb51609534c1ccf639e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Fri, 2 Aug 2019 00:24:11 -0400 Subject: Revert "You give jruby_skip & rubinius_skip a good name" This reverts commit 8d2866bb80fbe81acb04f5b0c44f152f571fb29f. --- actionpack/test/abstract_unit.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'actionpack') diff --git a/actionpack/test/abstract_unit.rb b/actionpack/test/abstract_unit.rb index 238ce32ce6..ded93dd33f 100644 --- a/actionpack/test/abstract_unit.rb +++ b/actionpack/test/abstract_unit.rb @@ -350,6 +350,19 @@ class CommentsController < ResourcesController; end class AccountsController < ResourcesController; end class ImagesController < ResourcesController; end +class ActiveSupport::TestCase + private + # 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 +end + class DrivenByRackTest < ActionDispatch::SystemTestCase driven_by :rack_test end -- cgit v1.2.3