aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/test_unit/performance/templates/performance_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails/generators/test_unit/performance/templates/performance_test.rb')
-rw-r--r--railties/lib/rails/generators/test_unit/performance/templates/performance_test.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/railties/lib/rails/generators/test_unit/performance/templates/performance_test.rb b/railties/lib/rails/generators/test_unit/performance/templates/performance_test.rb
new file mode 100644
index 0000000000..362e3dc09f
--- /dev/null
+++ b/railties/lib/rails/generators/test_unit/performance/templates/performance_test.rb
@@ -0,0 +1,9 @@
+require 'test_helper'
+require 'rails/performance_test_help'
+
+class <%= class_name %>Test < ActionController::PerformanceTest
+ # Replace this with your real tests.
+ def test_homepage
+ get '/'
+ end
+end