Sha256: a82ceb5a859496035b079032791cff002194499ddececa4479bb4c1052b2dd42
Contents?: true
Size: 626 Bytes
Versions: 11
Compression:
Stored size: 626 Bytes
Contents
#!/usr/bin/env ruby require 'test/unit' # require 'ruby-debug'; Debugger.start # Test that linetracing does something. class TestStepping < Test::Unit::TestCase @@SRC_DIR = File.join(Dir.pwd, File.dirname(__FILE__)) unless defined?(@@SRC_DIR) require File.join(@@SRC_DIR, 'helper') include TestHelper # Test commands in stepping.rb def test_basic testname='stepping' 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
11 entries across 11 versions & 1 rubygems