Class: JunitModel::CLI::Options

Inherits:
Object
  • Object
show all
Defined in:
lib/junit_model/cli/cli_parser.rb

Overview

The options to be used throughout the CLI Module

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeOptions

Returns a new instance of Options.



8
9
10
11
# File 'lib/junit_model/cli/cli_parser.rb', line 8

def initialize
  self.files = []
  self.output_path = './merged_tests.xml'
end

Instance Attribute Details

#filesObject

Returns the value of attribute files.



7
8
9
# File 'lib/junit_model/cli/cli_parser.rb', line 7

def files
  @files
end

#output_pathObject

Returns the value of attribute output_path.



7
8
9
# File 'lib/junit_model/cli/cli_parser.rb', line 7

def output_path
  @output_path
end