Sha256: ff1a2adef3aa7b10e51bcbfb0a2519eec53a48c808595ce6dda06b1dcbf3a7d1
Contents?: true
Size: 681 Bytes
Versions: 4
Compression:
Stored size: 681 Bytes
Contents
require 'action_controller/integration' require 'active_support/testing/performance' require 'active_support/testing/default' module ActionController # 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. # # By default, process_time is measured and both flat and graph_html output # formats are written, so you'll have two output files per test method. class PerformanceTest < ActionController::IntegrationTest include ActiveSupport::Testing::Performance include ActiveSupport::Testing::Default end end
Version data entries
4 entries across 3 versions & 2 rubygems