Sha256: 6eb62a49ad1602349ce2a7a8340419aa4d77da25ae0048c56d84ffea2475e0e9
Contents?: true
Size: 744 Bytes
Versions: 11
Compression:
Stored size: 744 Bytes
Contents
#!/usr/bin/env ruby require 'test/unit' # require 'ruby-debug'; Debugger.start # Test Quit command class TestQuit < 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='quit' Dir.chdir(@@SRC_DIR) do script = File.join('data', testname + '.cmd') # filter = Proc.new{|got_lines, correct_lines| # [got_lines[0], correct_lines[0]].each do |s| # s.sub!(/tdebug.rb:\d+/, 'rdebug:999') # end # } assert_equal(true, run_debugger(testname, "--script #{script} -- ./null.rb")) end end end
Version data entries
11 entries across 11 versions & 1 rubygems