blob: 13fe693c32b43bca9fe3711f630c0f3a5a72b912 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
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
|