Class: SuiteGenerator

Inherits:
Sprout::Generator::NamedBase
  • Object
show all
Defined in:
lib/sprout/generators/suite/suite_generator.rb

Overview

Generate a new ActionScript 3.0 test suite This generator can be executed as follows:

sprout -n as3 SomeProject
cd SomeProject
script/generator suite

Instance Method Summary collapse

Instance Method Details

#manifestObject

:nodoc:



11
12
13
14
15
# File 'lib/sprout/generators/suite/suite_generator.rb', line 11

def manifest
  record do |m|
    m.template 'TestSuite.as', File.join(test_dir, 'AllTests.as')
  end
end