Sha256: 6f21f8149c0c55a1838c639a34a8d9b535cca2fc70c0f9c9e2b9818b724499b2

Contents?: true

Size: 676 Bytes

Versions: 3

Compression:

Stored size: 676 Bytes

Contents

#!/usr/bin/env ruby
require 'test/unit'

# begin require 'rubygems' rescue LoadError end
# 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

3 entries across 3 versions & 1 rubygems

Version Path
debugger-1.0.0 test/test-stepping.rb
debugger-1.0.0.rc2 test/test-stepping.rb
debugger-1.0.0.rc1 test/test-stepping.rb