mirror of
https://github.com/github/rails.git
synced 2026-01-14 09:07:58 -05:00
11 lines
397 B
Ruby
11 lines
397 B
Ruby
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
|