Displaying 1 result from an estimated 1 matches for "railsdemos".
2005 Oct 30
1
attaching the debugger to functional test.
...st:
#
# bikle_test.rb
#
require File.dirname(__FILE__) + ''/../test_helper''
class BikleTest < Test::Unit::TestCase
def setup
@string10 = "hello"
end
def test10
assert_equal @string10, "hello"
end
end
When I run it, I see this:
zmac11:/cd/railsdemos/rtest/test/functional oracle$
zmac11:/cd/railsdemos/rtest/test/functional oracle$
zmac11:/cd/railsdemos/rtest/test/functional oracle$
zmac11:/cd/railsdemos/rtest/test/functional oracle$
zmac11:/cd/railsdemos/rtest/test/functional oracle$ ls
./ ../ bikle_test.rb
zmac11:/cd/railsdemos/rtest/test/fu...