search for: bikle_test

Displaying 1 result from an estimated 1 matches for "bikle_test".

2005 Oct 30
1
attaching the debugger to functional test.
People, I''m trying to run the ruby debugger against a Test::Unit::TestCase class which is a parent of a Rails class. I started my study with a simple script: # # bikle_test.rb # require ''test/unit'' class BikleTest < Test::Unit::TestCase def setup @string10 = "hello" end def test10 assert_equal @string10, "hello" end end The following command line works great: ruby -r debug bikle_test.rb Next, I create a ne...