aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/test_unit/performance/performance_generator.rb
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-01-06 00:05:25 +0100
committerYves Senn <yves.senn@gmail.com>2013-01-10 17:09:06 +0100
commit3e1ed7818ba1abbc331c568327c6c0d64702985e (patch)
tree55b9e604c97849090f154f4a8feb2ad52a44858a /railties/lib/rails/generators/test_unit/performance/performance_generator.rb
parent8d926f58d91020f9a8936ad6908939c0e298907b (diff)
downloadrails-3e1ed7818ba1abbc331c568327c6c0d64702985e.tar.gz
rails-3e1ed7818ba1abbc331c568327c6c0d64702985e.tar.bz2
rails-3e1ed7818ba1abbc331c568327c6c0d64702985e.zip
extract PerformanceTest into rails-performance_tests gem
Diffstat (limited to 'railties/lib/rails/generators/test_unit/performance/performance_generator.rb')
-rw-r--r--railties/lib/rails/generators/test_unit/performance/performance_generator.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/railties/lib/rails/generators/test_unit/performance/performance_generator.rb b/railties/lib/rails/generators/test_unit/performance/performance_generator.rb
deleted file mode 100644
index 5552edeee4..0000000000
--- a/railties/lib/rails/generators/test_unit/performance/performance_generator.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-require 'rails/generators/test_unit'
-
-module TestUnit # :nodoc:
- module Generators # :nodoc:
- class PerformanceGenerator < Base # :nodoc:
- check_class_collision suffix: "Test"
-
- def create_test_files
- template 'performance_test.rb', File.join('test/performance', class_path, "#{file_name}_test.rb")
- end
- end
- end
-end