Is there a config variable to set, or some other way to get Rails ActiveSupport::TestCase to show more than one trace line? It is really hard to de
ActiveSupport::TestCase
You could try to wrap failing code with:
begin # failing code rescue Exception => e puts e.message puts e.backtrace end
Another way is debugging your application with ruby-debug.
ruby-debug