What runs when running tests?

I guess I’m still learning ruby.

While looking through the test code I realized I don’t see what
actually runs.

My tests extend Test::Unit::TestCase, and define tests as

def test_sometestname

some testing stuff

end

I scanned Test::Unit::TestCase and I see a bunch of function
definitions, but I don’t see what runs. I guess I’m looking for a
method or piece of code that starts running, initializes things, finds
the test_* test methods and starts running them.

It’s probably staring me in the face. Please point it out to me.

Thank you.

-Kelly

On 2/14/07, kelly [email protected] wrote:

I guess I’m still learning ruby.

While looking through the test code I realized I don’t see what
actually runs.

A TestRunner.

See the files in lib/1.8/test/unit for more information if you want to
understand Test::Unit.

-austin

On 2/14/07, kelly [email protected] wrote:

I scanned Test::Unit::TestCase and I see a bunch of function
definitions, but I don’t see what runs. I guess I’m looking for a
method or piece of code that starts running, initializes things, finds
the test_* test methods and starts running them.

To expand on Austin’s answer just a little: I think the magic that
you’re looking for is at the tail end of unit.rb, in the
lib/1.8/test/unit directory of the standard library. Test::Unit takes
advantage of the at_exit() method to register a little bit of code
that invokes the Test::Unit AutoRunner class right before the
interpreter exits.

Thanks.

Here is what I’ve learned so far:

I’m testing rails code. The generated rails test stubs have this line:

require File.dirname(FILE) + ‘/…/test_helper’

app/test/test_helper.rb contains this line:

require ‘test_help’

lib/ruby/gems/1.8/rails-1.1.6/lib/test_help.rb contains this line:

require ‘test/unit’

lib/ruby/1.8/test/unit.rb contains these lines:

at_exit do
unless $! || Test::Unit.run?
exit Test::Unit::AutoRunner.run
end
end

I think this is the magic that runs the tests.

-Kelly

Lyle,

Thanks very much.

I see the code you refer to. Now I wonder why it is done using the
at_exit method – seems a little obtuse to me.

My original question has been answered. Thanks again.

-Kelly

On Feb 14, 11:41 am, “kelly” [email protected] wrote:

I see the code you refer to. Now I wonder why it is done using the
at_exit method – seems a little obtuse to me.

In Python’s unit testing framework, you have to explicitly include
this code in every one of your test files. It’s a real pain. Using the
at_exit hook in Ruby makes your unit tests cleaner.