blob: 13fe693c32b43bca9fe3711f630c0f3a5a72b912 (
plain) (
tree)
|
|
require 'active_support/testing/performance'
module ActionDispatch
# An integration test that runs a code profiler on your test methods.
# Profiling output for combinations of each test method, measurement, and
# output format are written to your tmp/performance directory.
class PerformanceTest < ActionDispatch::IntegrationTest
include ActiveSupport::Testing::Performance
end
end
|