Sha256: 7416c51fb975d327c831b2823aa78f8476aec4e092d95bb91e39f14076a4b488
Contents?: true
Size: 702 Bytes
Versions: 195
Compression:
Stored size: 702 Bytes
Contents
require 'rails/generators/test_unit' module TestUnit module Generators class ModelGenerator < Base argument :attributes, :type => :array, :default => [], :banner => "field:type field:type" class_option :fixture, :type => :boolean check_class_collision :suffix => "Test" def create_test_file template 'unit_test.rb', File.join('test/unit', class_path, "#{file_name}_test.rb") end hook_for :fixture_replacement def create_fixture_file if options[:fixture] && options[:fixture_replacement].nil? template 'fixtures.yml', File.join('test/fixtures', class_path, "#{plural_file_name}.yml") end end end end end
Version data entries
195 entries across 159 versions & 17 rubygems