aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailbox/lib/rails/generators/test_unit/mailbox_generator.rb
blob: 2ec7d11a2fa074806e41ee92a4278d50c442a9d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module TestUnit
  module Generators
    class MailboxGenerator < ::Rails::Generators::NamedBase
      source_root File.expand_path("templates", __dir__)

      check_class_collision suffix: "MailboxTest"

      def create_test_files
        template "mailbox_test.rb", File.join("test/mailboxes", class_path, "#{file_name}_mailbox_test.rb")
      end

      private
        def file_name # :doc:
          @_file_name ||= super.sub(/_mailbox\z/i, "")
        end
    end
  end
end