plugin_generator.rb 150 字节
Newer Older
1 2 3 4 5 6 7 8 9
module TestUnit
  module Generators
    class PluginGenerator < Base
      def create_test_files
        directory 'test'
      end
    end
  end
end