Sha256: 732c2533ada9028fa2697acc479de39d7f4fd019fbdffd4665a04653066e5ff0
Contents?: true
Size: 586 Bytes
Versions: 11
Compression:
Stored size: 586 Bytes
Contents
#!/usr/bin/env ruby require 'test/unit' # require 'ruby-debug'; Debugger.start # Test exception catching class TestExceptionCatch2 < Test::Unit::TestCase @@SRC_DIR = File.join(Dir.pwd, File.dirname(__FILE__)) unless defined?(@@SRC_DIR) require File.join(@@SRC_DIR, 'helper') include TestHelper def test_basic testname='catch2' Dir.chdir(@@SRC_DIR) do script = File.join('data', testname + '.cmd') assert_equal(true, run_debugger(testname, "--script #{script} -- ./pm-catch2.rb")) end end end
Version data entries
11 entries across 11 versions & 1 rubygems