Sha256: 80eb3334d396c3d31aedd07983004386534c62bbffd4f08a81fea6545da5ce4c
Contents?: true
Size: 1.01 KB
Versions: 203
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true require "rails/generators/test_unit" module TestUnit # :nodoc: module Generators # :nodoc: class ModelGenerator < Base # :nodoc: RESERVED_YAML_KEYWORDS = %w(y yes n no true false on off null) 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/models", 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, "#{fixture_file_name}.yml") end end private def yaml_key_value(key, value) if RESERVED_YAML_KEYWORDS.include?(key.downcase) "'#{key}': #{value}" else "#{key}: #{value}" end end end end end
Version data entries
203 entries across 190 versions & 14 rubygems