Displaying 1 result from an estimated 1 matches for "test_something_to_test".
2010 Jul 11
4
Testomg: doing def test_blah or test "blah" do
Hey, I''m wondering about the distinction between writing test methods
like
1.
def test_something_to_test
end
and like
2.
test "something to test" do
end
It seems like there''s no difference. I did notice, however, that #2
can''t be done in a class that extends Test::Unit::TestCase, while it can
be done in one that extends ActionController::TestCase. I also noticed
that...