Sha256: 7615e81d6df240e850bbee6cf4885db520a401f1f0e54a90fb9517b7c327911e
Contents?: true
Size: 834 Bytes
Versions: 9
Compression:
Stored size: 834 Bytes
Contents
#!/usr/bin/env ruby require 'test/unit' # begin require 'rubygems' rescue LoadError end # require 'ruby-debug'; Debugger.start # Test Running a program wiht an embedded space class TestFileWithSpace < Test::Unit::TestCase @@SRC_DIR = File.dirname(__FILE__) unless defined?(@@SRC_DIR) require File.join(@@SRC_DIR, 'helper') include TestHelper def test_basic testname='file-with-space' 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} -- 'file with space.rb'")) end end end
Version data entries
9 entries across 9 versions & 3 rubygems