Sha256: 9ab44963162f6d16190ac1e73008ae583c03b12eb41c9f896af229374a87dbff
Contents?: true
Size: 1.58 KB
Versions: 13
Compression:
Stored size: 1.58 KB
Contents
#!/usr/bin/env ruby require 'test/unit' # begin require 'rubygems' rescue LoadError end # require 'ruby-debug'; Debugger.start # Test 'edit' command handling. class TestEdit < Test::Unit::TestCase @@SRC_DIR = File.dirname(__FILE__) unless defined?(@@SRC_DIR) require File.join(@@SRC_DIR, 'helper') include TestHelper def test_trace_option filter = Proc.new{|got_lines, correct_lines| got_lines.collect!{|l| l =~ /:gcd\.rb:/? l : nil}.compact! } testname='trace' Dir.chdir(@@SRC_DIR) do assert_equal(true, run_debugger(testname, "-nx --trace gcd.rb 3 5", nil, filter)) end end def test_linetrace_command filter = Proc.new{|got_lines, correct_lines| got_lines.collect!{|l| l !~ /:rdbg\.rb:/? l : nil}.compact! } testname='linetrace' Dir.chdir(@@SRC_DIR) do script = File.join('data', testname + '.cmd') assert_equal(true, run_debugger(testname, "--script #{script} -- gcd.rb 3 5", nil, filter)) end end def test_linetrace_plus_command filter = Proc.new{|got_lines, correct_lines| got_lines.collect!{|l| l !~ /:rdbg\.rb:/? l : nil}.compact! } testname='linetracep' Dir.chdir(@@SRC_DIR) do script = File.join('data', testname + '.cmd') assert_equal(true, run_debugger(testname, "--script #{script} -- gcd.rb 3 5", nil, filter)) end end end
Version data entries
13 entries across 13 versions & 4 rubygems