aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailbox/lib/rails/generators/test_unit/mailbox_generator.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionmailbox/lib/rails/generators/test_unit/mailbox_generator.rb')
-rw-r--r--actionmailbox/lib/rails/generators/test_unit/mailbox_generator.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/actionmailbox/lib/rails/generators/test_unit/mailbox_generator.rb b/actionmailbox/lib/rails/generators/test_unit/mailbox_generator.rb
new file mode 100644
index 0000000000..2ec7d11a2f
--- /dev/null
+++ b/actionmailbox/lib/rails/generators/test_unit/mailbox_generator.rb
@@ -0,0 +1,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