Sha256: e55095f354eabaca3c18cbfb255ba553ffecdf6ca9b823723b16ac67075e68c4

Contents?: true

Size: 691 Bytes

Versions: 3

Compression:

Stored size: 691 Bytes

Contents

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

# begin require 'rubygems' rescue LoadError end
# require 'ruby-debug'; Debugger.start

# Test 'starting' annotation.
class TestStartingAnnotate < 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='output'
    Dir.chdir(@@SRC_DIR) do 
      script = File.join('data', testname + '.cmd')
      assert_equal(true, 
                   run_debugger(testname,
                                "-A 3 --script #{script} -- ./output.rb",
                                nil, nil, true))
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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