Class: TestUnit::Generators::ScaffoldGenerator

Inherits:
Base
  • Object
show all
Includes:
Rails::Generators::ResourceHelpers
Defined in:
railties/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb

Overview

:nodoc:

Instance Method Summary collapse

Methods included from Rails::Generators::ResourceHelpers

included, #initialize

Instance Method Details

#create_test_filesObject



21
22
23
24
25
26
27
28
29
# File 'railties/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb', line 21

def create_test_files
  template_file = options.api? ? "api_functional_test.rb" : "functional_test.rb"
  template template_file,
           File.join("test/controllers", controller_class_path, "#{controller_file_name}_controller_test.rb")

  if !options.api? && options[:system_tests]
    template "system_test.rb", File.join("test/system", class_path, "#{file_name.pluralize}_test.rb")
  end
end

#fixture_nameObject



31
32
33
34
35
36
37
38
# File 'railties/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb', line 31

def fixture_name
  @fixture_name ||=
    if mountable_engine?
      (namespace_dirs + [table_name]).join("_")
    else
      table_name
    end
end