Class: Minitest::Generators::SystemGenerator
Overview
:nodoc:
Instance Method Summary collapse
Methods inherited from Base
default_source_root, #spec_expectation_monad, #test_file_type
Instance Method Details
#create_test_files ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/generators/minitest/system/system_generator.rb', line 10 def create_test_files unless 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_file_type}.rb", File.join("test/system", class_path, "#{file_name.pluralize}_test.rb") end |