Class: TestUnit::Generators::SystemGenerator

Inherits:
Base
  • Object
show all
Defined in:
railties/lib/rails/generators/test_unit/system/system_generator.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#create_test_filesObject



10
11
12
13
14
15
16
# File 'railties/lib/rails/generators/test_unit/system/system_generator.rb', line 10

def create_test_files
  if !File.exist?(File.join("test/application_system_test_case.rb"))
    template "application_system_test_case.rb", File.join("test", "application_system_test_case.rb")
  end

  template "system_test.rb", File.join("test/system", class_path, "#{file_name.pluralize}_test.rb")
end