Sha256: 9ed75d449c895783f7990c7c0af6e4c0450e514d898473d10fb3950b59c5ccb2
Contents?: true
Size: 615 Bytes
Versions: 13
Compression:
Stored size: 615 Bytes
Contents
#!/usr/bin/env ruby require 'test/unit' # begin require 'rubygems' rescue LoadError end # require 'ruby-debug'; Debugger.start # Test breakpoint commands class TestBreakpoints < Test::Unit::TestCase @@SRC_DIR = File.dirname(__FILE__) unless defined?(@@SRC_DIR) require File.join(@@SRC_DIR, 'helper') include TestHelper def test_basic testname='breakpoints' Dir.chdir(@@SRC_DIR) do script = File.join('data', testname + '.cmd') assert_equal(true, run_debugger(testname, "--script #{script} -- gcd.rb 3 5")) end end end
Version data entries
13 entries across 13 versions & 4 rubygems