Sha256: d9996d77c71650d22144e16016399f8c02c4aa1f16a213217ad52d9e188acffc

Contents?: true

Size: 1.1 KB

Versions: 19

Compression:

Stored size: 1.1 KB

Contents

# Copyright (C) 2012  Kouhei Sutou <kou@clear-code.com>
#
# License: Ruby's or LGPLv2.1 or later
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA

module Test
  module Unit
    autoload :TestCase, "test/unit/testcase"
    autoload :AutoRunner, "test/unit/autorunner"
  end
end

# experimental. It is for "ruby -rtest-unit -e run test/test_*.rb".
# Is this API OK or dirty?
def run
  self.class.send(:undef_method, :run)
  require "test/unit"
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
test-unit-3.1.4 lib/test-unit.rb
test-unit-3.1.3 lib/test-unit.rb
test-unit-3.1.2 lib/test-unit.rb
test-unit-3.1.1 lib/test-unit.rb
test-unit-3.1.0 lib/test-unit.rb
test-unit-3.0.9 lib/test-unit.rb
test-unit-3.0.8 lib/test-unit.rb
test-unit-3.0.7 lib/test-unit.rb
test-unit-3.0.6 lib/test-unit.rb
test-unit-3.0.5 lib/test-unit.rb
test-unit-3.0.4 lib/test-unit.rb
test-unit-3.0.3 lib/test-unit.rb
test-unit-3.0.2 lib/test-unit.rb
test-unit-3.0.1 lib/test-unit.rb
test-unit-3.0.0 lib/test-unit.rb
test-unit-2.5.5 lib/test-unit.rb
test-unit-2.5.4 lib/test-unit.rb
test-unit-2.5.3 lib/test-unit.rb
test-unit-2.5.2 lib/test-unit.rb