summaryrefslogtreecommitdiff
path: root/test
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-10 18:38:01 +0900
commit57d704fd6369df36797a2b840ec1c6f8cacbdbec (patch)
treeeeb6f2a21923a329565ac9c10cf3b09969cbde72 /test
parent01dda86681385f1eb55e4d4494bfc264a2a3c968 (diff)
downloadpsych-57d704fd6369df36797a2b840ec1c6f8cacbdbec.tar.gz
Removed needless platform detection
Diffstat (limited to 'test')
-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 88a2631..909f8f9 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