aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/test_unit/performance/performance_generator.rb
blob: 0d9c646b268ab55c88ab26e7f0b62f56c44bb920 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'generators/test_unit'

module TestUnit
  module Generators
    class PerformanceGenerator < Base
      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