1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix generated performance test helper requires

This commit is contained in:
Jeremy Kemper 2009-11-10 01:52:40 -08:00
parent 38e8d5b10c
commit 7ad6e9bc78
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
require 'test_helper' require 'test_helper'
require 'performance_test_help' require 'rails/performance_test_help'
# Profiling results for each test method are written to tmp/performance. # Profiling results for each test method are written to tmp/performance.
class BrowsingTest < ActionController::PerformanceTest class BrowsingTest < ActionController::PerformanceTest

View file

@ -1,5 +1,5 @@
require 'test_helper' require 'test_helper'
require 'performance_test_help' require 'rails/performance_test_help'
class <%= class_name %>Test < ActionController::PerformanceTest class <%= class_name %>Test < ActionController::PerformanceTest
# Replace this with your real tests. # Replace this with your real tests.