Sha256: 2e45988d6e387fde6732d6fcaab5138120ad63cc8e04d794a5e7e374c7bb347f
Contents?: true
Size: 1.8 KB
Versions: 9
Compression:
Stored size: 1.8 KB
Contents
require 'mocha/debug' require 'mocha/integration/test_unit/nothing' require 'mocha/integration/test_unit/ruby_version_185_and_below' require 'mocha/integration/test_unit/ruby_version_186_and_above' require 'mocha/integration/test_unit/gem_version_200' require 'mocha/integration/test_unit/gem_version_201_to_202' require 'mocha/integration/test_unit/gem_version_203_to_220' require 'mocha/integration/test_unit/gem_version_230_to_250' require 'mocha/integration/test_unit/adapter' module Mocha module Integration module TestUnit def self.activate return false unless defined?(::Test::Unit::TestCase) && !(defined?(::MiniTest::Unit::TestCase) && (::Test::Unit::TestCase < ::MiniTest::Unit::TestCase)) && !(defined?(::MiniTest::Spec) && (::Test::Unit::TestCase < ::MiniTest::Spec)) test_unit_version = begin require 'test/unit/version' Gem::Version.new(::Test::Unit::VERSION) rescue LoadError Gem::Version.new('1.0.0') end ruby_version = Gem::Version.new(RUBY_VERSION.dup) Debug.puts "Detected Ruby version: #{ruby_version}" Debug.puts "Detected Test::Unit version: #{test_unit_version}" integration_module = [ TestUnit::Adapter, TestUnit::GemVersion230To250, TestUnit::GemVersion203To220, TestUnit::GemVersion201To202, TestUnit::GemVersion200, TestUnit::RubyVersion186AndAbove, TestUnit::RubyVersion185AndBelow, TestUnit::Nothing ].detect { |m| m.applicable_to?(test_unit_version, ruby_version) } unless ::Test::Unit::TestCase < integration_module Debug.puts "Applying #{integration_module.description}" ::Test::Unit::TestCase.send(:include, integration_module) end true end end end end
Version data entries
9 entries across 9 versions & 3 rubygems