Class: TestUnit::Generators::ScaffoldGenerator
- Inherits:
-
Base
- Object
- Thor::Group
- Rails::Generators::Base
- Rails::Generators::NamedBase
- Base
- TestUnit::Generators::ScaffoldGenerator
- Includes:
- Rails::Generators::ResourceHelpers
- Defined in:
- lib/rails/generators/test_unit/scaffold/scaffold_generator.rb
Overview
:nodoc:
Instance Method Summary collapse
Methods included from Rails::Generators::ResourceHelpers
Methods inherited from Rails::Generators::NamedBase
Methods inherited from Rails::Generators::Base
base_root, class_option, default_source_root, desc, exit_on_failure?, hide!, hook_for, inherited, namespace, remove_hook_for, source_root
Methods included from Rails::Generators::Actions
#add_source, #after_bundle, #capify!, #environment, #gem, #gem_group, #generate, #git, #initialize, #initializer, #lib, #rails_command, #rake, #rakefile, #readme, #route, #vendor
Instance Method Details
#create_test_files ⇒ Object
21 22 23 24 25 26 27 28 29 |
# File 'lib/rails/generators/test_unit/scaffold/scaffold_generator.rb', line 21 def create_test_files template_file = .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 !.api? && [:system_tests] template "system_test.rb", File.join("test/system", class_path, "#{file_name.pluralize}_test.rb") end end |
#fixture_name ⇒ Object
31 32 33 34 35 36 37 38 |
# File '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 |