Sha256: 366eed0b1500e24ddbf988094bd077f46440715911951cfb4fa259a5b89afa67
Contents?: true
Size: 481 Bytes
Versions: 25
Compression:
Stored size: 481 Bytes
Contents
# frozen_string_literal: true require "rails/generators/test_unit" module TestUnit # :nodoc: module Generators # :nodoc: class IntegrationGenerator < Base # :nodoc: check_class_collision suffix: "Test" def create_test_files template "integration_test.rb", File.join("test/integration", class_path, "#{file_name}_test.rb") end private def file_name @_file_name ||= super.sub(/_test\z/i, "") end end end end
Version data entries
25 entries across 23 versions & 5 rubygems