summaryrefslogtreecommitdiff
path: root/test/lib
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2021-05-10 18:38:01 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-05-17 11:20:45 +0900
commitbcaa6aeceadd34eb6a0de1d55bf17ecb153a7916 (patch)
treee8b4499b75d83dbda3c4d101b2e5677bc5e95688 /test/lib
parentdf86a13cc150f573b1078779667a1573747d3dbd (diff)
[ruby/psych] Removed needless platform detection
https://github.com/ruby/psych/commit/57d704fd63
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/helper.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/lib/helper.rb b/test/lib/helper.rb
index 88a26310ee..909f8f98af 100644
--- a/test/lib/helper.rb
+++ b/test/lib/helper.rb
@@ -2,13 +2,3 @@ require "test/unit"
require_relative "core_assertions"
Test::Unit::TestCase.include Test::Unit::CoreAssertions
-
-module Test
- module Unit
- class TestCase
- def windows? platform = RUBY_PLATFORM
- /mswin|mingw/ =~ platform
- end
- end
- end
-end