I would like to have a method that runs once per file rather than once per test. I've seen some references to a "before" method, but doesnt appear to work with MiniTest. Ideally, something like this:
class MyTest < ActiveSupport::TestCase
before do
# Executes once per file
end
setup do
# Executes once per test
end
# Tests go here
end