Sharing Methods Across Fixtures

I've got a fixture where a couple methods are defined in the top of the fixture that take an argument and return a date. Does anybody have any idea where can I put these methods (test_helper.rb doesn't seem to work) that they will be available to all my fixtures?

Here's a copy of the fixture file that demonstrates what I'm doing. I want to move the start_date and end_date methods off to some appropriate place that will be accessible to ALL of my fixtures

Uhhh, nevermind. Putting the method in test_helper.rb, but not inside any other classes, seems to do the trick.

Jon Garvin wrote: