aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/test_unit/mailer/mailer_generator.rb
blob: 5fa7751076b1efe9e75cc2c84a5e98935aa5b0f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module TestUnit
  module Generators
    class MailerGenerator < Base
      argument :actions, :type => :array, :default => []

      desc <<DESC
Description:
    Create TestUnit files for mailer generator.
DESC

      def create_test_files
        template "unit_test.rb", File.join('test', 'unit', class_path, "#{file_name}_test.rb")
      end

      def create_fixtures_files
        actions.each do |action|
          @action, @path = action, File.join(file_path, action)
          template "fixture", File.join("test", "fixtures", @path)
        end
      end
    end
  end
end