Topic: Some wierdness after upgrading to 1.2 RC (1.1.6.5618?)
Over the weekend I upgraded to the 1.2 release candidate and spent most of the time dealing with the new deprecation warnings, etc.
However my testing woes have increased -- where before I could get my tests to pass with either autotest or rake test (but not both), now there seems to be a third case -- rake test behaves differently than ruby test/test_helper.rb test/models/some_model_test.rb.
I have a test that falls in the rake test case, but passes when run from test_helper. However, only the first 5 out of 10 tests run when run from test_helper.... Its not seeing the other test methods, but its not erroring out either.
The typical cause I've found for autotest and rake test to behave differently is due to fixture load issues and I wouldn't be surprised if that's the case here too, but I haven't been able to identify which fixture is not being dropping/recreated, which was why I tried dropping to the single test case -- less noise in the log to sort though, etc.... But now the problem test isn't being run....
Has anyone seen anything like this?