/vendor/gems/ruby-debug-0.10.2/test/test-display.rb
https://github.com/technicalpickles/flockup · Ruby · 26 lines · 16 code · 5 blank · 5 comment · 0 complexity · eb57407d73e075ecfcd4558853d7314e MD5 · raw file
- #!/usr/bin/env ruby
- require 'test/unit'
- # begin require 'rubygems' rescue LoadError end
- # require 'ruby-debug'; Debugger.start
- # Test Display commands
- class TestDisplay < Test::Unit::TestCase
- @@SRC_DIR = File.dirname(__FILE__) unless
- defined?(@@SRC_DIR)
- require File.join(@@SRC_DIR, 'helper')
- include TestHelper
- # Test commands in display.rb
- def test_basic
- testname='display'
- 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