blob: ef350a622451a37f7279eeaba2d658fa02c116ff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'generators/test_unit'
module TestUnit
module Generators
class MailerGenerator < Base
argument :actions, :type => :array, :default => [], :banner => "method method"
check_class_collision :suffix => "Test"
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
|