Topic: Test::Rails -- Some Strange Interaction
A regular test_helper.rb works fine for my tests and my test classis Test::Unit::TestCase
If I require test/rails prior to requiring test_help (no other changes), I get an immediate failure:
./test/functional/../test_helper.rb:19: undefined method `use_transactional_fixtures=' for Test::Unit::TestCase:Class (NoMethodError)
So, I change the class to Test::Rails::TestCase, the failure persists.
Does anyone know what might be causing this?