hammer_cli 0.18.1 → 0.19.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (181) hide show
  1. checksums.yaml +4 -4
  2. data/doc/creating_commands.md +2 -8
  3. data/doc/developer_docs.md +2 -0
  4. data/doc/help_modification.md +35 -4
  5. data/doc/output.md +43 -0
  6. data/doc/release_notes.md +6 -2
  7. data/doc/review_checklist.md +17 -0
  8. data/lib/hammer_cli/help/definition.rb +1 -0
  9. data/lib/hammer_cli/help/definition/abstract_item.rb +2 -1
  10. data/lib/hammer_cli/help/definition/list.rb +5 -2
  11. data/lib/hammer_cli/help/definition/note.rb +30 -0
  12. data/lib/hammer_cli/help/definition/section.rb +0 -1
  13. data/lib/hammer_cli/help/definition/text.rb +3 -1
  14. data/lib/hammer_cli/help/text_builder.rb +7 -2
  15. data/lib/hammer_cli/main.rb +2 -2
  16. data/lib/hammer_cli/output/adapter/abstract.rb +9 -3
  17. data/lib/hammer_cli/output/adapter/base.rb +4 -2
  18. data/lib/hammer_cli/output/adapter/csv.rb +4 -2
  19. data/lib/hammer_cli/output/adapter/table.rb +4 -2
  20. data/lib/hammer_cli/output/adapter/tree_structure.rb +4 -4
  21. data/lib/hammer_cli/output/fields.rb +3 -0
  22. data/lib/hammer_cli/output/formatters.rb +77 -27
  23. data/lib/hammer_cli/output/utils.rb +12 -1
  24. data/lib/hammer_cli/version.rb +1 -1
  25. data/locale/ca/LC_MESSAGES/hammer-cli.mo +0 -0
  26. data/locale/de/LC_MESSAGES/hammer-cli.mo +0 -0
  27. data/locale/en/LC_MESSAGES/hammer-cli.mo +0 -0
  28. data/locale/en_GB/LC_MESSAGES/hammer-cli.mo +0 -0
  29. data/locale/es/LC_MESSAGES/hammer-cli.mo +0 -0
  30. data/locale/fr/LC_MESSAGES/hammer-cli.mo +0 -0
  31. data/locale/it/LC_MESSAGES/hammer-cli.mo +0 -0
  32. data/locale/ja/LC_MESSAGES/hammer-cli.mo +0 -0
  33. data/locale/ko/LC_MESSAGES/hammer-cli.mo +0 -0
  34. data/locale/pt_BR/LC_MESSAGES/hammer-cli.mo +0 -0
  35. data/locale/ru/LC_MESSAGES/hammer-cli.mo +0 -0
  36. data/locale/zh_CN/LC_MESSAGES/hammer-cli.mo +0 -0
  37. data/locale/zh_TW/LC_MESSAGES/hammer-cli.mo +0 -0
  38. data/man/hammer.1.gz +0 -0
  39. data/test/reports/TEST-Fields-ContainerField-display-.xml +7 -0
  40. data/test/reports/TEST-Fields-ContainerField-display-blank-is-allowed.xml +15 -0
  41. data/test/reports/TEST-Fields-ContainerField-display-blank-is-not-allowed.xml +15 -0
  42. data/test/reports/TEST-Fields-ContainerField.xml +7 -0
  43. data/test/reports/TEST-Fields-Field-display-.xml +7 -0
  44. data/test/reports/TEST-Fields-Field-display-blank-is-allowed.xml +11 -0
  45. data/test/reports/TEST-Fields-Field-display-blank-is-not-allowed.xml +11 -0
  46. data/test/reports/TEST-Fields-Field-hide-blank-.xml +11 -0
  47. data/test/reports/TEST-Fields-Field-parameters.xml +9 -0
  48. data/test/reports/TEST-Fields-Field.xml +13 -0
  49. data/test/reports/TEST-HammerCLI-AbstractCommand-build-options.xml +15 -0
  50. data/test/reports/TEST-HammerCLI-AbstractCommand-exception-handler.xml +13 -0
  51. data/test/reports/TEST-HammerCLI-AbstractCommand-logging.xml +21 -0
  52. data/test/reports/TEST-HammerCLI-AbstractCommand-option-builder.xml +11 -0
  53. data/test/reports/TEST-HammerCLI-AbstractCommand-options.xml +11 -0
  54. data/test/reports/TEST-HammerCLI-AbstractCommand-output.xml +19 -0
  55. data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-remove-subcommand.xml +11 -0
  56. data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand-.xml +13 -0
  57. data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand.xml +11 -0
  58. data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior.xml +7 -0
  59. data/test/reports/TEST-HammerCLI-AbstractCommand.xml +11 -0
  60. data/test/reports/TEST-HammerCLI-Apipie-Command-options.xml +11 -0
  61. data/test/reports/TEST-HammerCLI-Apipie-Command-resource-defined.xml +9 -0
  62. data/test/reports/TEST-HammerCLI-Apipie-Command-setting-resources.xml +19 -0
  63. data/test/reports/TEST-HammerCLI-Apipie-Command.xml +9 -0
  64. data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-aliasing-resources.xml +13 -0
  65. data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-filtering-options.xml +15 -0
  66. data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-required-options.xml +11 -0
  67. data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-setting-correct-normalizers.xml +9 -0
  68. data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-hash-params.xml +11 -0
  69. data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-one-simple-param.xml +15 -0
  70. data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder.xml +7 -0
  71. data/test/reports/TEST-HammerCLI-Completer-command-completion.xml +29 -0
  72. data/test/reports/TEST-HammerCLI-Completer-option-value-completion.xml +17 -0
  73. data/test/reports/TEST-HammerCLI-Completer-subcommand-completion.xml +19 -0
  74. data/test/reports/TEST-HammerCLI-Completer.xml +7 -0
  75. data/test/reports/TEST-HammerCLI-CompleterLine-line-complete.xml +25 -0
  76. data/test/reports/TEST-HammerCLI-CompleterLine-splitting-words.xml +29 -0
  77. data/test/reports/TEST-HammerCLI-CompleterLine.xml +7 -0
  78. data/test/reports/TEST-HammerCLI-CompleterWord-complete-.xml +23 -0
  79. data/test/reports/TEST-HammerCLI-CompleterWord-quote.xml +15 -0
  80. data/test/reports/TEST-HammerCLI-CompleterWord-quoted-.xml +13 -0
  81. data/test/reports/TEST-HammerCLI-CompleterWord.xml +7 -0
  82. data/test/reports/TEST-HammerCLI-Connection.xml +21 -0
  83. data/test/reports/TEST-HammerCLI-ExceptionHandler.xml +21 -0
  84. data/test/reports/TEST-HammerCLI-I18n.xml +11 -0
  85. data/test/reports/TEST-HammerCLI-MainCommand-loading-context-password.xml +11 -0
  86. data/test/reports/TEST-HammerCLI-MainCommand-loading-context-username.xml +11 -0
  87. data/test/reports/TEST-HammerCLI-MainCommand-loading-context-verbose.xml +9 -0
  88. data/test/reports/TEST-HammerCLI-MainCommand-loading-context.xml +7 -0
  89. data/test/reports/TEST-HammerCLI-MainCommand.xml +7 -0
  90. data/test/reports/TEST-HammerCLI-Modules-find-by-name.xml +13 -0
  91. data/test/reports/TEST-HammerCLI-Modules-load-a-module-module-not-found.xml +13 -0
  92. data/test/reports/TEST-HammerCLI-Modules-load-a-module-module-runtime-exception.xml +13 -0
  93. data/test/reports/TEST-HammerCLI-Modules-load-a-module-success.xml +15 -0
  94. data/test/reports/TEST-HammerCLI-Modules-load-a-module.xml +7 -0
  95. data/test/reports/TEST-HammerCLI-Modules-load-all-modules.xml +9 -0
  96. data/test/reports/TEST-HammerCLI-Modules-names.xml +13 -0
  97. data/test/reports/TEST-HammerCLI-Modules.xml +7 -0
  98. data/test/reports/TEST-HammerCLI-OptionBuilderContainer.0.xml +7 -0
  99. data/test/reports/TEST-HammerCLI-OptionBuilderContainer.xml +11 -0
  100. data/test/reports/TEST-HammerCLI-Options-Normalizers-abstract.xml +9 -0
  101. data/test/reports/TEST-HammerCLI-Options-Normalizers-bool.xml +31 -0
  102. data/test/reports/TEST-HammerCLI-Options-Normalizers-datetime.xml +17 -0
  103. data/test/reports/TEST-HammerCLI-Options-Normalizers-enum.xml +15 -0
  104. data/test/reports/TEST-HammerCLI-Options-Normalizers-enumlist.xml +21 -0
  105. data/test/reports/TEST-HammerCLI-Options-Normalizers-json-input.xml +15 -0
  106. data/test/reports/TEST-HammerCLI-Options-Normalizers-key-value-list.xml +17 -0
  107. data/test/reports/TEST-HammerCLI-Options-Normalizers-list.xml +15 -0
  108. data/test/reports/TEST-HammerCLI-Options-Normalizers.xml +7 -0
  109. data/test/reports/TEST-HammerCLI-Options-OptionDefinition-context.xml +9 -0
  110. data/test/reports/TEST-HammerCLI-Options-OptionDefinition-formatters.xml +11 -0
  111. data/test/reports/TEST-HammerCLI-Options-OptionDefinition.xml +7 -0
  112. data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-error-messages.xml +15 -0
  113. data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-messages.xml +11 -0
  114. data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-test-data-for-field.xml +15 -0
  115. data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract.xml +17 -0
  116. data/test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection-show-ids.xml +9 -0
  117. data/test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection.xml +27 -0
  118. data/test/reports/TEST-HammerCLI-Output-Adapter-Base.xml +7 -0
  119. data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-formatters.xml +11 -0
  120. data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-collections.xml +13 -0
  121. data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-containers.xml +11 -0
  122. data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-ids.xml +11 -0
  123. data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection.xml +11 -0
  124. data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-message.xml +11 -0
  125. data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues.xml +7 -0
  126. data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-column-width.xml +15 -0
  127. data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-formatters.xml +11 -0
  128. data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-handle-ids.xml +11 -0
  129. data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-sort-columns.xml +9 -0
  130. data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection.xml +11 -0
  131. data/test/reports/TEST-HammerCLI-Output-Adapter-Table.xml +7 -0
  132. data/test/reports/TEST-HammerCLI-Output-Definition-empty-.xml +11 -0
  133. data/test/reports/TEST-HammerCLI-Output-Definition.xml +11 -0
  134. data/test/reports/TEST-HammerCLI-Output-Dsl-collection.xml +13 -0
  135. data/test/reports/TEST-HammerCLI-Output-Dsl-custom-fields.xml +11 -0
  136. data/test/reports/TEST-HammerCLI-Output-Dsl-fields.xml +15 -0
  137. data/test/reports/TEST-HammerCLI-Output-Dsl-label.xml +13 -0
  138. data/test/reports/TEST-HammerCLI-Output-Dsl-path-definition.xml +13 -0
  139. data/test/reports/TEST-HammerCLI-Output-Dsl.xml +9 -0
  140. data/test/reports/TEST-HammerCLI-Output-FieldFilter.xml +13 -0
  141. data/test/reports/TEST-HammerCLI-Output-Formatters-BooleanFormatter.xml +11 -0
  142. data/test/reports/TEST-HammerCLI-Output-Formatters-ColorFormatter.xml +9 -0
  143. data/test/reports/TEST-HammerCLI-Output-Formatters-DateFormatter.xml +11 -0
  144. data/test/reports/TEST-HammerCLI-Output-Formatters-FieldFormatter.xml +13 -0
  145. data/test/reports/TEST-HammerCLI-Output-Formatters-FormatterContainer.xml +13 -0
  146. data/test/reports/TEST-HammerCLI-Output-Formatters-FormatterLibrary.xml +11 -0
  147. data/test/reports/TEST-HammerCLI-Output-Formatters-KeyValueFormatter.xml +13 -0
  148. data/test/reports/TEST-HammerCLI-Output-Formatters-ListFormatter.xml +13 -0
  149. data/test/reports/TEST-HammerCLI-Output-Formatters-LongTextFormatter.xml +13 -0
  150. data/test/reports/TEST-HammerCLI-Output-Output-adapters.xml +17 -0
  151. data/test/reports/TEST-HammerCLI-Output-Output-data.xml +15 -0
  152. data/test/reports/TEST-HammerCLI-Output-Output-formatters.xml +9 -0
  153. data/test/reports/TEST-HammerCLI-Output-Output-messages.xml +19 -0
  154. data/test/reports/TEST-HammerCLI-Output-Output.xml +7 -0
  155. data/test/reports/TEST-HammerCLI-Output-RecordCollection.xml +13 -0
  156. data/test/reports/TEST-HammerCLI-Settings-load-from-paths.xml +15 -0
  157. data/test/reports/TEST-HammerCLI-Settings.xml +25 -0
  158. data/test/reports/TEST-HammerCLI-ShellHistory-loading-old-history.xml +11 -0
  159. data/test/reports/TEST-HammerCLI-ShellHistory-saving-history.xml +15 -0
  160. data/test/reports/TEST-HammerCLI-ShellHistory.xml +7 -0
  161. data/test/reports/TEST-MiniTest-Spec.xml +7 -0
  162. data/test/reports/TEST-String-camelize.xml +11 -0
  163. data/test/reports/TEST-String-formatting.xml +17 -0
  164. data/test/reports/TEST-String-indent.xml +11 -0
  165. data/test/reports/TEST-String-interactive-.xml +13 -0
  166. data/test/reports/TEST-String.xml +7 -0
  167. data/test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint-exist-.xml +13 -0
  168. data/test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint.xml +7 -0
  169. data/test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint-exist-.xml +13 -0
  170. data/test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint.xml +7 -0
  171. data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-exist-.xml +9 -0
  172. data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-rejected.xml +13 -0
  173. data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-required.xml +13 -0
  174. data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint.xml +7 -0
  175. data/test/reports/TEST-constraints.xml +7 -0
  176. data/test/unit/help/definition/list_test.rb +12 -0
  177. data/test/unit/help/definition/note_test.rb +18 -0
  178. data/test/unit/help/definition/text_test.rb +5 -0
  179. data/test/unit/output/adapter/abstract_test.rb +9 -9
  180. data/test/unit/output/formatters_test.rb +49 -6
  181. metadata +348 -67
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hammer_cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.1
4
+ version: 0.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Bačovský
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-10-31 00:00:00.000000000 Z
12
+ date: 2019-10-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: clamp
@@ -151,27 +151,29 @@ executables:
151
151
  - hammer
152
152
  extensions: []
153
153
  extra_rdoc_files:
154
- - doc/commands_extension.md
155
- - doc/commands_modification.md
156
- - doc/creating_apipie_commands.md
157
154
  - doc/design.png
158
- - doc/design.uml
159
- - doc/development_tips.md
160
- - doc/i18n.md
161
- - doc/installation_deb.md
162
- - doc/installation_gem.md
163
- - doc/installation_rpm.md
164
- - doc/installation_source.md
165
- - doc/option_builders.md
166
155
  - doc/option_normalizers.md
167
- - doc/writing_a_plugin.md
168
- - doc/help_modification.md
169
156
  - doc/release_notes.md
170
- - doc/installation.md
157
+ - doc/commands_modification.md
171
158
  - doc/creating_commands.md
159
+ - doc/commands_extension.md
160
+ - doc/development_tips.md
172
161
  - doc/developer_docs.md
173
- - config/cli.modules.d/module_config_template.yml
162
+ - doc/writing_a_plugin.md
163
+ - doc/option_builders.md
164
+ - doc/installation_rpm.md
165
+ - doc/i18n.md
166
+ - doc/installation.md
167
+ - doc/review_checklist.md
168
+ - doc/help_modification.md
169
+ - doc/installation_source.md
170
+ - doc/output.md
171
+ - doc/design.uml
172
+ - doc/installation_gem.md
173
+ - doc/creating_apipie_commands.md
174
+ - doc/installation_deb.md
174
175
  - config/cli_config.template.yml
176
+ - config/cli.modules.d/module_config_template.yml
175
177
  - README.md
176
178
  files:
177
179
  - LICENSE
@@ -196,7 +198,9 @@ files:
196
198
  - doc/installation_source.md
197
199
  - doc/option_builders.md
198
200
  - doc/option_normalizers.md
201
+ - doc/output.md
199
202
  - doc/release_notes.md
203
+ - doc/review_checklist.md
200
204
  - doc/writing_a_plugin.md
201
205
  - hammer_cli_complete
202
206
  - lib/hammer_cli.rb
@@ -226,6 +230,7 @@ files:
226
230
  - lib/hammer_cli/help/definition.rb
227
231
  - lib/hammer_cli/help/definition/abstract_item.rb
228
232
  - lib/hammer_cli/help/definition/list.rb
233
+ - lib/hammer_cli/help/definition/note.rb
229
234
  - lib/hammer_cli/help/definition/section.rb
230
235
  - lib/hammer_cli/help/definition/text.rb
231
236
  - lib/hammer_cli/help/text_builder.rb
@@ -298,6 +303,143 @@ files:
298
303
  - test/functional/help_test.rb
299
304
  - test/functional/nil_values_test.rb
300
305
  - test/functional/test_helper.rb
306
+ - test/reports/TEST-Fields-ContainerField-display-.xml
307
+ - test/reports/TEST-Fields-ContainerField-display-blank-is-allowed.xml
308
+ - test/reports/TEST-Fields-ContainerField-display-blank-is-not-allowed.xml
309
+ - test/reports/TEST-Fields-ContainerField.xml
310
+ - test/reports/TEST-Fields-Field-display-.xml
311
+ - test/reports/TEST-Fields-Field-display-blank-is-allowed.xml
312
+ - test/reports/TEST-Fields-Field-display-blank-is-not-allowed.xml
313
+ - test/reports/TEST-Fields-Field-hide-blank-.xml
314
+ - test/reports/TEST-Fields-Field-parameters.xml
315
+ - test/reports/TEST-Fields-Field.xml
316
+ - test/reports/TEST-HammerCLI-AbstractCommand-build-options.xml
317
+ - test/reports/TEST-HammerCLI-AbstractCommand-exception-handler.xml
318
+ - test/reports/TEST-HammerCLI-AbstractCommand-logging.xml
319
+ - test/reports/TEST-HammerCLI-AbstractCommand-option-builder.xml
320
+ - test/reports/TEST-HammerCLI-AbstractCommand-options.xml
321
+ - test/reports/TEST-HammerCLI-AbstractCommand-output.xml
322
+ - test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-remove-subcommand.xml
323
+ - test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand-.xml
324
+ - test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand.xml
325
+ - test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior.xml
326
+ - test/reports/TEST-HammerCLI-AbstractCommand.xml
327
+ - test/reports/TEST-HammerCLI-Apipie-Command-options.xml
328
+ - test/reports/TEST-HammerCLI-Apipie-Command-resource-defined.xml
329
+ - test/reports/TEST-HammerCLI-Apipie-Command-setting-resources.xml
330
+ - test/reports/TEST-HammerCLI-Apipie-Command.xml
331
+ - test/reports/TEST-HammerCLI-Apipie-OptionBuilder-aliasing-resources.xml
332
+ - test/reports/TEST-HammerCLI-Apipie-OptionBuilder-filtering-options.xml
333
+ - test/reports/TEST-HammerCLI-Apipie-OptionBuilder-required-options.xml
334
+ - test/reports/TEST-HammerCLI-Apipie-OptionBuilder-setting-correct-normalizers.xml
335
+ - test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-hash-params.xml
336
+ - test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-one-simple-param.xml
337
+ - test/reports/TEST-HammerCLI-Apipie-OptionBuilder.xml
338
+ - test/reports/TEST-HammerCLI-Completer-command-completion.xml
339
+ - test/reports/TEST-HammerCLI-Completer-option-value-completion.xml
340
+ - test/reports/TEST-HammerCLI-Completer-subcommand-completion.xml
341
+ - test/reports/TEST-HammerCLI-Completer.xml
342
+ - test/reports/TEST-HammerCLI-CompleterLine-line-complete.xml
343
+ - test/reports/TEST-HammerCLI-CompleterLine-splitting-words.xml
344
+ - test/reports/TEST-HammerCLI-CompleterLine.xml
345
+ - test/reports/TEST-HammerCLI-CompleterWord-complete-.xml
346
+ - test/reports/TEST-HammerCLI-CompleterWord-quote.xml
347
+ - test/reports/TEST-HammerCLI-CompleterWord-quoted-.xml
348
+ - test/reports/TEST-HammerCLI-CompleterWord.xml
349
+ - test/reports/TEST-HammerCLI-Connection.xml
350
+ - test/reports/TEST-HammerCLI-ExceptionHandler.xml
351
+ - test/reports/TEST-HammerCLI-I18n.xml
352
+ - test/reports/TEST-HammerCLI-MainCommand-loading-context-password.xml
353
+ - test/reports/TEST-HammerCLI-MainCommand-loading-context-username.xml
354
+ - test/reports/TEST-HammerCLI-MainCommand-loading-context-verbose.xml
355
+ - test/reports/TEST-HammerCLI-MainCommand-loading-context.xml
356
+ - test/reports/TEST-HammerCLI-MainCommand.xml
357
+ - test/reports/TEST-HammerCLI-Modules-find-by-name.xml
358
+ - test/reports/TEST-HammerCLI-Modules-load-a-module-module-not-found.xml
359
+ - test/reports/TEST-HammerCLI-Modules-load-a-module-module-runtime-exception.xml
360
+ - test/reports/TEST-HammerCLI-Modules-load-a-module-success.xml
361
+ - test/reports/TEST-HammerCLI-Modules-load-a-module.xml
362
+ - test/reports/TEST-HammerCLI-Modules-load-all-modules.xml
363
+ - test/reports/TEST-HammerCLI-Modules-names.xml
364
+ - test/reports/TEST-HammerCLI-Modules.xml
365
+ - test/reports/TEST-HammerCLI-OptionBuilderContainer.0.xml
366
+ - test/reports/TEST-HammerCLI-OptionBuilderContainer.xml
367
+ - test/reports/TEST-HammerCLI-Options-Normalizers-abstract.xml
368
+ - test/reports/TEST-HammerCLI-Options-Normalizers-bool.xml
369
+ - test/reports/TEST-HammerCLI-Options-Normalizers-datetime.xml
370
+ - test/reports/TEST-HammerCLI-Options-Normalizers-enum.xml
371
+ - test/reports/TEST-HammerCLI-Options-Normalizers-enumlist.xml
372
+ - test/reports/TEST-HammerCLI-Options-Normalizers-json-input.xml
373
+ - test/reports/TEST-HammerCLI-Options-Normalizers-key-value-list.xml
374
+ - test/reports/TEST-HammerCLI-Options-Normalizers-list.xml
375
+ - test/reports/TEST-HammerCLI-Options-Normalizers.xml
376
+ - test/reports/TEST-HammerCLI-Options-OptionDefinition-context.xml
377
+ - test/reports/TEST-HammerCLI-Options-OptionDefinition-formatters.xml
378
+ - test/reports/TEST-HammerCLI-Options-OptionDefinition.xml
379
+ - test/reports/TEST-HammerCLI-Output-Adapter-Abstract-error-messages.xml
380
+ - test/reports/TEST-HammerCLI-Output-Adapter-Abstract-messages.xml
381
+ - test/reports/TEST-HammerCLI-Output-Adapter-Abstract-test-data-for-field.xml
382
+ - test/reports/TEST-HammerCLI-Output-Adapter-Abstract.xml
383
+ - test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection-show-ids.xml
384
+ - test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection.xml
385
+ - test/reports/TEST-HammerCLI-Output-Adapter-Base.xml
386
+ - test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-formatters.xml
387
+ - test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-collections.xml
388
+ - test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-containers.xml
389
+ - test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-ids.xml
390
+ - test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection.xml
391
+ - test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-message.xml
392
+ - test/reports/TEST-HammerCLI-Output-Adapter-CSValues.xml
393
+ - test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-column-width.xml
394
+ - test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-formatters.xml
395
+ - test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-handle-ids.xml
396
+ - test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-sort-columns.xml
397
+ - test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection.xml
398
+ - test/reports/TEST-HammerCLI-Output-Adapter-Table.xml
399
+ - test/reports/TEST-HammerCLI-Output-Definition-empty-.xml
400
+ - test/reports/TEST-HammerCLI-Output-Definition.xml
401
+ - test/reports/TEST-HammerCLI-Output-Dsl-collection.xml
402
+ - test/reports/TEST-HammerCLI-Output-Dsl-custom-fields.xml
403
+ - test/reports/TEST-HammerCLI-Output-Dsl-fields.xml
404
+ - test/reports/TEST-HammerCLI-Output-Dsl-label.xml
405
+ - test/reports/TEST-HammerCLI-Output-Dsl-path-definition.xml
406
+ - test/reports/TEST-HammerCLI-Output-Dsl.xml
407
+ - test/reports/TEST-HammerCLI-Output-FieldFilter.xml
408
+ - test/reports/TEST-HammerCLI-Output-Formatters-BooleanFormatter.xml
409
+ - test/reports/TEST-HammerCLI-Output-Formatters-ColorFormatter.xml
410
+ - test/reports/TEST-HammerCLI-Output-Formatters-DateFormatter.xml
411
+ - test/reports/TEST-HammerCLI-Output-Formatters-FieldFormatter.xml
412
+ - test/reports/TEST-HammerCLI-Output-Formatters-FormatterContainer.xml
413
+ - test/reports/TEST-HammerCLI-Output-Formatters-FormatterLibrary.xml
414
+ - test/reports/TEST-HammerCLI-Output-Formatters-KeyValueFormatter.xml
415
+ - test/reports/TEST-HammerCLI-Output-Formatters-ListFormatter.xml
416
+ - test/reports/TEST-HammerCLI-Output-Formatters-LongTextFormatter.xml
417
+ - test/reports/TEST-HammerCLI-Output-Output-adapters.xml
418
+ - test/reports/TEST-HammerCLI-Output-Output-data.xml
419
+ - test/reports/TEST-HammerCLI-Output-Output-formatters.xml
420
+ - test/reports/TEST-HammerCLI-Output-Output-messages.xml
421
+ - test/reports/TEST-HammerCLI-Output-Output.xml
422
+ - test/reports/TEST-HammerCLI-Output-RecordCollection.xml
423
+ - test/reports/TEST-HammerCLI-Settings-load-from-paths.xml
424
+ - test/reports/TEST-HammerCLI-Settings.xml
425
+ - test/reports/TEST-HammerCLI-ShellHistory-loading-old-history.xml
426
+ - test/reports/TEST-HammerCLI-ShellHistory-saving-history.xml
427
+ - test/reports/TEST-HammerCLI-ShellHistory.xml
428
+ - test/reports/TEST-MiniTest-Spec.xml
429
+ - test/reports/TEST-String-camelize.xml
430
+ - test/reports/TEST-String-formatting.xml
431
+ - test/reports/TEST-String-indent.xml
432
+ - test/reports/TEST-String-interactive-.xml
433
+ - test/reports/TEST-String.xml
434
+ - test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint-exist-.xml
435
+ - test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint.xml
436
+ - test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint-exist-.xml
437
+ - test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint.xml
438
+ - test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-exist-.xml
439
+ - test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-rejected.xml
440
+ - test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-required.xml
441
+ - test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint.xml
442
+ - test/reports/TEST-constraints.xml
301
443
  - test/test_helper.rb
302
444
  - test/unit/abstract_test.rb
303
445
  - test/unit/apipie/api_connection_test.rb
@@ -323,6 +465,7 @@ files:
323
465
  - test/unit/help/builder_test.rb
324
466
  - test/unit/help/definition/abstract_item_test.rb
325
467
  - test/unit/help/definition/list_test.rb
468
+ - test/unit/help/definition/note_test.rb
326
469
  - test/unit/help/definition/section_test.rb
327
470
  - test/unit/help/definition/text_test.rb
328
471
  - test/unit/help/definition_test.rb
@@ -383,67 +526,205 @@ signing_key:
383
526
  specification_version: 4
384
527
  summary: Universal command-line interface
385
528
  test_files:
386
- - test/functional/defaults_test.rb
387
- - test/functional/help_test.rb
388
- - test/functional/nil_values_test.rb
389
- - test/functional/test_helper.rb
390
- - test/test_helper.rb
391
- - test/unit/abstract_test.rb
392
- - test/unit/apipie/api_connection_test.rb
393
- - test/unit/apipie/command_test.rb
394
- - test/unit/apipie/option_builder_test.rb
395
- - test/unit/apipie/option_definition_test.rb
396
- - test/unit/apipie/test_helper.rb
397
- - test/unit/ca_cert_manager_test.rb
398
- - test/unit/command_extensions_test.rb
399
- - test/unit/completer_test.rb
400
- - test/unit/connection_test.rb
401
- - test/unit/csv_parser_test.rb
402
- - test/unit/defaults_test.rb
403
- - test/unit/exception_handler_test.rb
404
- - test/unit/fixtures/apipie/architectures.json
405
- - test/unit/fixtures/apipie/documented.json
406
- - test/unit/fixtures/certs/ca_cert.pem
407
- - test/unit/fixtures/certs/non_ca_cert.pem
408
- - test/unit/fixtures/defaults/defaults.yml
409
- - test/unit/fixtures/defaults/defaults_dashed.yml
410
- - test/unit/fixtures/json_input/invalid.json
411
- - test/unit/fixtures/json_input/valid.json
412
- - test/unit/help/builder_test.rb
529
+ - test/reports/TEST-HammerCLI-CompleterWord-quoted-.xml
530
+ - test/reports/TEST-String-interactive-.xml
531
+ - test/reports/TEST-HammerCLI-Output-Formatters-BooleanFormatter.xml
532
+ - test/reports/TEST-HammerCLI-Apipie-OptionBuilder.xml
533
+ - test/reports/TEST-HammerCLI-Output-Dsl-path-definition.xml
534
+ - test/reports/TEST-HammerCLI-AbstractCommand-output.xml
535
+ - test/reports/TEST-HammerCLI-ShellHistory-loading-old-history.xml
536
+ - test/reports/TEST-Fields-Field-display-blank-is-allowed.xml
537
+ - test/reports/TEST-HammerCLI-Completer.xml
538
+ - test/reports/TEST-HammerCLI-Output-Output-adapters.xml
539
+ - test/reports/TEST-HammerCLI-MainCommand-loading-context.xml
540
+ - test/reports/TEST-HammerCLI-MainCommand-loading-context-username.xml
541
+ - test/reports/TEST-HammerCLI-Output-Formatters-ColorFormatter.xml
542
+ - test/reports/TEST-HammerCLI-Modules-load-a-module-module-runtime-exception.xml
543
+ - test/reports/TEST-HammerCLI-Modules-load-all-modules.xml
544
+ - test/reports/TEST-HammerCLI-Output-Definition.xml
545
+ - test/reports/TEST-Fields-Field-hide-blank-.xml
546
+ - test/reports/TEST-HammerCLI-Apipie-Command-resource-defined.xml
547
+ - test/reports/TEST-Fields-ContainerField-display-blank-is-not-allowed.xml
548
+ - test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-exist-.xml
549
+ - test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection.xml
550
+ - test/reports/TEST-HammerCLI-OptionBuilderContainer.0.xml
551
+ - test/reports/TEST-HammerCLI-Apipie-OptionBuilder-required-options.xml
552
+ - test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-containers.xml
553
+ - test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior.xml
554
+ - test/reports/TEST-MiniTest-Spec.xml
555
+ - test/reports/TEST-HammerCLI-Output-Adapter-Base.xml
556
+ - test/reports/TEST-HammerCLI-Completer-subcommand-completion.xml
557
+ - test/reports/TEST-Fields-Field-display-blank-is-not-allowed.xml
558
+ - test/reports/TEST-HammerCLI-Apipie-Command-setting-resources.xml
559
+ - test/reports/TEST-HammerCLI-Options-Normalizers-abstract.xml
560
+ - test/reports/TEST-HammerCLI-Modules-load-a-module-success.xml
561
+ - test/reports/TEST-Fields-Field.xml
562
+ - test/reports/TEST-HammerCLI-Output-RecordCollection.xml
563
+ - test/reports/TEST-HammerCLI-Options-Normalizers-list.xml
564
+ - test/reports/TEST-HammerCLI-Output-Adapter-Table.xml
565
+ - test/reports/TEST-HammerCLI-Modules.xml
566
+ - test/reports/TEST-HammerCLI-Output-Formatters-FieldFormatter.xml
567
+ - test/reports/TEST-HammerCLI-Output-Dsl-label.xml
568
+ - test/reports/TEST-HammerCLI-Completer-command-completion.xml
569
+ - test/reports/TEST-HammerCLI-Modules-find-by-name.xml
570
+ - test/reports/TEST-HammerCLI-Options-OptionDefinition.xml
571
+ - test/reports/TEST-Fields-ContainerField-display-.xml
572
+ - test/reports/TEST-HammerCLI-Apipie-OptionBuilder-filtering-options.xml
573
+ - test/reports/TEST-HammerCLI-Output-Formatters-DateFormatter.xml
574
+ - test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-ids.xml
575
+ - test/reports/TEST-HammerCLI-AbstractCommand.xml
576
+ - test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint-exist-.xml
577
+ - test/reports/TEST-HammerCLI-Settings-load-from-paths.xml
578
+ - test/reports/TEST-HammerCLI-AbstractCommand-build-options.xml
579
+ - test/reports/TEST-HammerCLI-Options-Normalizers-enumlist.xml
580
+ - test/reports/TEST-HammerCLI-Options-OptionDefinition-context.xml
581
+ - test/reports/TEST-HammerCLI-Output-Definition-empty-.xml
582
+ - test/reports/TEST-HammerCLI-Output-Formatters-KeyValueFormatter.xml
583
+ - test/reports/TEST-HammerCLI-Output-FieldFilter.xml
584
+ - test/reports/TEST-HammerCLI-MainCommand-loading-context-password.xml
585
+ - test/reports/TEST-HammerCLI-Modules-load-a-module.xml
586
+ - test/reports/TEST-HammerCLI-Output-Dsl.xml
587
+ - test/reports/TEST-Fields-ContainerField-display-blank-is-allowed.xml
588
+ - test/reports/TEST-constraints.xml
589
+ - test/reports/TEST-String-camelize.xml
590
+ - test/reports/TEST-HammerCLI-Settings.xml
591
+ - test/reports/TEST-HammerCLI-ExceptionHandler.xml
592
+ - test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-required.xml
593
+ - test/reports/TEST-HammerCLI-Options-Normalizers-bool.xml
594
+ - test/reports/TEST-HammerCLI-AbstractCommand-logging.xml
595
+ - test/reports/TEST-HammerCLI-Output-Formatters-ListFormatter.xml
596
+ - test/reports/TEST-HammerCLI-Output-Formatters-FormatterLibrary.xml
597
+ - test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-formatters.xml
598
+ - test/reports/TEST-Fields-ContainerField.xml
599
+ - test/reports/TEST-HammerCLI-Output-Adapter-Abstract-messages.xml
600
+ - test/reports/TEST-HammerCLI-Output-Output-data.xml
601
+ - test/reports/TEST-HammerCLI-Apipie-OptionBuilder-aliasing-resources.xml
602
+ - test/reports/TEST-HammerCLI-Options-Normalizers-key-value-list.xml
603
+ - test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint-exist-.xml
604
+ - test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand.xml
605
+ - test/reports/TEST-HammerCLI-Completer-option-value-completion.xml
606
+ - test/reports/TEST-HammerCLI-Output-Adapter-Abstract-error-messages.xml
607
+ - test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint.xml
608
+ - test/reports/TEST-HammerCLI-Output-Formatters-FormatterContainer.xml
609
+ - test/reports/TEST-HammerCLI-MainCommand.xml
610
+ - test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-message.xml
611
+ - test/reports/TEST-HammerCLI-CompleterWord-quote.xml
612
+ - test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-one-simple-param.xml
613
+ - test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-hash-params.xml
614
+ - test/reports/TEST-HammerCLI-ShellHistory-saving-history.xml
615
+ - test/reports/TEST-HammerCLI-AbstractCommand-exception-handler.xml
616
+ - test/reports/TEST-String-formatting.xml
617
+ - test/reports/TEST-HammerCLI-Output-Adapter-Abstract.xml
618
+ - test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint.xml
619
+ - test/reports/TEST-HammerCLI-Output-Dsl-collection.xml
620
+ - test/reports/TEST-HammerCLI-Output-Dsl-fields.xml
621
+ - test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection.xml
622
+ - test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-sort-columns.xml
623
+ - test/reports/TEST-HammerCLI-OptionBuilderContainer.xml
624
+ - test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection.xml
625
+ - test/reports/TEST-HammerCLI-Modules-names.xml
626
+ - test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand-.xml
627
+ - test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-collections.xml
628
+ - test/reports/TEST-HammerCLI-MainCommand-loading-context-verbose.xml
629
+ - test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-handle-ids.xml
630
+ - test/reports/TEST-HammerCLI-Options-Normalizers-datetime.xml
631
+ - test/reports/TEST-HammerCLI-Output-Output-messages.xml
632
+ - test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-remove-subcommand.xml
633
+ - test/reports/TEST-HammerCLI-CompleterLine-line-complete.xml
634
+ - test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-rejected.xml
635
+ - test/reports/TEST-HammerCLI-Apipie-Command.xml
636
+ - test/reports/TEST-HammerCLI-AbstractCommand-option-builder.xml
637
+ - test/reports/TEST-HammerCLI-Options-Normalizers-enum.xml
638
+ - test/reports/TEST-HammerCLI-Output-Adapter-Abstract-test-data-for-field.xml
639
+ - test/reports/TEST-HammerCLI-CompleterWord-complete-.xml
640
+ - test/reports/TEST-HammerCLI-Output-Output.xml
641
+ - test/reports/TEST-HammerCLI-Options-OptionDefinition-formatters.xml
642
+ - test/reports/TEST-HammerCLI-I18n.xml
643
+ - test/reports/TEST-HammerCLI-Modules-load-a-module-module-not-found.xml
644
+ - test/reports/TEST-String-indent.xml
645
+ - test/reports/TEST-HammerCLI-AbstractCommand-options.xml
646
+ - test/reports/TEST-HammerCLI-Output-Adapter-CSValues.xml
647
+ - test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint.xml
648
+ - test/reports/TEST-HammerCLI-Apipie-OptionBuilder-setting-correct-normalizers.xml
649
+ - test/reports/TEST-HammerCLI-Output-Dsl-custom-fields.xml
650
+ - test/reports/TEST-HammerCLI-ShellHistory.xml
651
+ - test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-column-width.xml
652
+ - test/reports/TEST-HammerCLI-Output-Formatters-LongTextFormatter.xml
653
+ - test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection-show-ids.xml
654
+ - test/reports/TEST-Fields-Field-parameters.xml
655
+ - test/reports/TEST-HammerCLI-CompleterLine-splitting-words.xml
656
+ - test/reports/TEST-HammerCLI-Apipie-Command-options.xml
657
+ - test/reports/TEST-String.xml
658
+ - test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-formatters.xml
659
+ - test/reports/TEST-HammerCLI-CompleterWord.xml
660
+ - test/reports/TEST-HammerCLI-Options-Normalizers.xml
661
+ - test/reports/TEST-HammerCLI-CompleterLine.xml
662
+ - test/reports/TEST-Fields-Field-display-.xml
663
+ - test/reports/TEST-HammerCLI-Connection.xml
664
+ - test/reports/TEST-HammerCLI-Options-Normalizers-json-input.xml
665
+ - test/reports/TEST-HammerCLI-Output-Output-formatters.xml
666
+ - test/unit/utils_test.rb
667
+ - test/unit/settings_test.rb
668
+ - test/unit/modules_test.rb
413
669
  - test/unit/help/definition/abstract_item_test.rb
414
- - test/unit/help/definition/section_test.rb
670
+ - test/unit/help/definition/note_test.rb
415
671
  - test/unit/help/definition/list_test.rb
416
672
  - test/unit/help/definition/text_test.rb
417
- - test/unit/help/definition_test.rb
673
+ - test/unit/help/definition/section_test.rb
674
+ - test/unit/help/builder_test.rb
418
675
  - test/unit/help/text_builder_test.rb
419
- - test/unit/history_test.rb
676
+ - test/unit/help/definition_test.rb
677
+ - test/unit/abstract_test.rb
420
678
  - test/unit/i18n_test.rb
421
679
  - test/unit/logger_test.rb
680
+ - test/unit/history_test.rb
681
+ - test/unit/exception_handler_test.rb
422
682
  - test/unit/main_test.rb
423
- - test/unit/messages_test.rb
424
- - test/unit/modules_test.rb
425
- - test/unit/option_builder_test.rb
426
- - test/unit/options/matcher_test.rb
427
- - test/unit/options/normalizers_test.rb
428
- - test/unit/options/option_collector_test.rb
429
- - test/unit/options/option_definition_test.rb
430
- - test/unit/options/processor_list_test.rb
431
- - test/unit/options/sources/command_line_test.rb
432
- - test/unit/options/sources/saved_defaults_test.rb
433
- - test/unit/options/validators/dsl_test.rb
683
+ - test/unit/connection_test.rb
684
+ - test/unit/output/output_test.rb
685
+ - test/unit/output/fields_test.rb
686
+ - test/unit/output/adapter/table_test.rb
687
+ - test/unit/output/adapter/abstract_test.rb
688
+ - test/unit/output/adapter/yaml_test.rb
434
689
  - test/unit/output/adapter/base_test.rb
435
690
  - test/unit/output/adapter/csv_test.rb
436
691
  - test/unit/output/adapter/json_test.rb
437
- - test/unit/output/adapter/table_test.rb
438
- - test/unit/output/adapter/yaml_test.rb
439
- - test/unit/output/adapter/abstract_test.rb
440
- - test/unit/output/dsl_test.rb
441
- - test/unit/output/field_filter_test.rb
442
- - test/unit/output/fields_test.rb
443
692
  - test/unit/output/record_collection_test.rb
444
- - test/unit/output/output_test.rb
693
+ - test/unit/output/dsl_test.rb
445
694
  - test/unit/output/definition_test.rb
695
+ - test/unit/output/field_filter_test.rb
446
696
  - test/unit/output/formatters_test.rb
447
- - test/unit/settings_test.rb
697
+ - test/unit/csv_parser_test.rb
698
+ - test/unit/completer_test.rb
699
+ - test/unit/apipie/api_connection_test.rb
700
+ - test/unit/apipie/option_definition_test.rb
701
+ - test/unit/apipie/command_test.rb
702
+ - test/unit/apipie/option_builder_test.rb
703
+ - test/unit/apipie/test_helper.rb
704
+ - test/unit/options/option_collector_test.rb
705
+ - test/unit/options/sources/saved_defaults_test.rb
706
+ - test/unit/options/sources/command_line_test.rb
707
+ - test/unit/options/normalizers_test.rb
708
+ - test/unit/options/validators/dsl_test.rb
709
+ - test/unit/options/option_definition_test.rb
710
+ - test/unit/options/processor_list_test.rb
711
+ - test/unit/options/matcher_test.rb
712
+ - test/unit/option_builder_test.rb
713
+ - test/unit/fixtures/certs/non_ca_cert.pem
714
+ - test/unit/fixtures/certs/ca_cert.pem
715
+ - test/unit/fixtures/json_input/invalid.json
716
+ - test/unit/fixtures/json_input/valid.json
717
+ - test/unit/fixtures/apipie/architectures.json
718
+ - test/unit/fixtures/apipie/documented.json
719
+ - test/unit/fixtures/defaults/defaults.yml
720
+ - test/unit/fixtures/defaults/defaults_dashed.yml
721
+ - test/unit/defaults_test.rb
722
+ - test/unit/messages_test.rb
723
+ - test/unit/command_extensions_test.rb
724
+ - test/unit/ca_cert_manager_test.rb
448
725
  - test/unit/test_helper.rb
449
- - test/unit/utils_test.rb
726
+ - test/functional/help_test.rb
727
+ - test/functional/nil_values_test.rb
728
+ - test/functional/defaults_test.rb
729
+ - test/functional/test_helper.rb
730
+ - test/test_helper.rb