Sha256: 0877b83d6837b8b8f792a0faeda77caab80cb74056186e994e232cda8a3bb87f
Contents?: true
Size: 555 Bytes
Versions: 32
Compression:
Stored size: 555 Bytes
Contents
require_relative 'suite_input_template' module Inferno module CLI class Suite < Thor desc 'input_template SUITE_ID', 'Create a template for preset inputs' long_desc <<~LONGDESC Generates a template for creating an input preset for a Test Suite. With -f option, the preset template is written to the specified filename. LONGDESC option :filename, banner: '<filename>', aliases: [:f] def input_template(suite_id) SuiteInputTemplate.new.run(suite_id, options) end end end end
Version data entries
32 entries across 32 versions & 1 rubygems