Sha256: b5299b60ef82b2b33c2d8937c6afe8650dac383b3bd582ab31e78c523fcb1044
Contents?: true
Size: 934 Bytes
Versions: 11
Compression:
Stored size: 934 Bytes
Contents
#!/usr/bin/env ruby require 'test/unit' # require 'ruby-debug'; Debugger.start(:post_mortem => true) # Test frame commands class TestFrame < 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 frame.rb def test_basic testname='frame' # Ruby 1.8.6 and earlier have a trace-line number bug for return # statements. filter = Proc.new{|got_lines, correct_lines| [got_lines[11], correct_lines[11]].flatten.each do |s| s.sub!(/in file ".*gcd.rb/, 'in file "gcd.rb') end } 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
11 entries across 11 versions & 1 rubygems