summaryrefslogtreecommitdiff
path: root/test/lib/helper.rb
blob: 88a26310ee4fd07b114c8887ac004a8063ed44b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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