Overriding setup in Rail’s test_helper - impossible?
Is there a way that will just work for adding common setup code to test_helper? None of the below work:
def setup
end
def setup
super
end
def setup_with_logging
setup_without_logging
end
alias_method_chain :setup, :logging
There is way too much magic happening in the rails test setup, particularly in fixtures.rb. This should not be that difficult.

No Comments Yet