hammer_cli 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (225) hide show
  1. checksums.yaml +4 -4
  2. data/bin/hammer +22 -1
  3. data/config/cli_config.template.yml +20 -0
  4. data/doc/release_notes.md +7 -0
  5. data/lib/hammer_cli/abstract.rb +12 -15
  6. data/lib/hammer_cli/apipie/api_connection.rb +3 -1
  7. data/lib/hammer_cli/ca_cert_fetcher.rb +67 -0
  8. data/lib/hammer_cli/defaults.rb +18 -10
  9. data/lib/hammer_cli/exception_handler.rb +44 -5
  10. data/lib/hammer_cli/main.rb +8 -0
  11. data/lib/hammer_cli/options/option_collector.rb +22 -0
  12. data/lib/hammer_cli/options/sources/command_line.rb +18 -0
  13. data/lib/hammer_cli/options/sources/saved_defaults.rb +31 -0
  14. data/lib/hammer_cli/output/adapter/table.rb +66 -87
  15. data/lib/hammer_cli/output/fields.rb +1 -1
  16. data/lib/hammer_cli/ssloptions.rb +65 -0
  17. data/lib/hammer_cli/version.rb +1 -1
  18. data/locale/ca/LC_MESSAGES/hammer-cli.mo +0 -0
  19. data/locale/de/LC_MESSAGES/hammer-cli.mo +0 -0
  20. data/locale/en/LC_MESSAGES/hammer-cli.mo +0 -0
  21. data/locale/en_GB/LC_MESSAGES/hammer-cli.mo +0 -0
  22. data/locale/es/LC_MESSAGES/hammer-cli.mo +0 -0
  23. data/locale/fr/LC_MESSAGES/hammer-cli.mo +0 -0
  24. data/locale/it/LC_MESSAGES/hammer-cli.mo +0 -0
  25. data/locale/ja/LC_MESSAGES/hammer-cli.mo +0 -0
  26. data/locale/ko/LC_MESSAGES/hammer-cli.mo +0 -0
  27. data/locale/pt_BR/LC_MESSAGES/hammer-cli.mo +0 -0
  28. data/locale/ru/LC_MESSAGES/hammer-cli.mo +0 -0
  29. data/locale/zh_CN/LC_MESSAGES/hammer-cli.mo +0 -0
  30. data/locale/zh_TW/LC_MESSAGES/hammer-cli.mo +0 -0
  31. data/man/hammer.1.gz +0 -0
  32. data/test/unit/abstract_test.rb +34 -0
  33. data/test/unit/apipie/api_connection_test.rb +3 -2
  34. data/test/unit/defaults_test.rb +15 -5
  35. data/test/unit/fixtures/defaults/defaults.yml +2 -0
  36. data/test/unit/options/option_collector_test.rb +29 -0
  37. data/test/unit/options/sources/command_line_test.rb +36 -0
  38. data/test/unit/options/sources/saved_defaults_test.rb +59 -0
  39. data/test/unit/output/adapter/table_test.rb +0 -27
  40. data/test/unit/{options → output}/field_filter_test.rb +0 -0
  41. data/test/unit/output/fields_test.rb +9 -6
  42. data/test/unit/validator_test.rb +0 -6
  43. metadata +60 -382
  44. data/lib/hammer_cli/table_print/column.rb +0 -19
  45. data/lib/hammer_cli/table_print/formatter.rb +0 -18
  46. data/locale/Makefile +0 -57
  47. data/locale/README.md +0 -18
  48. data/locale/ca/hammer-cli.edit.po +0 -445
  49. data/locale/ca/hammer-cli.po +0 -361
  50. data/locale/ca/hammer-cli.po.time_stamp +0 -0
  51. data/locale/de/hammer-cli.edit.po +0 -451
  52. data/locale/de/hammer-cli.po +0 -379
  53. data/locale/de/hammer-cli.po.time_stamp +0 -0
  54. data/locale/en/hammer-cli.edit.po +0 -443
  55. data/locale/en/hammer-cli.po +0 -355
  56. data/locale/en/hammer-cli.po.time_stamp +0 -0
  57. data/locale/en_GB/hammer-cli.edit.po +0 -445
  58. data/locale/en_GB/hammer-cli.po +0 -371
  59. data/locale/en_GB/hammer-cli.po.time_stamp +0 -0
  60. data/locale/es/hammer-cli.edit.po +0 -448
  61. data/locale/es/hammer-cli.po +0 -377
  62. data/locale/es/hammer-cli.po.time_stamp +0 -0
  63. data/locale/fr/hammer-cli.edit.po +0 -447
  64. data/locale/fr/hammer-cli.po +0 -374
  65. data/locale/fr/hammer-cli.po.time_stamp +0 -0
  66. data/locale/hammer-cli.pot +0 -461
  67. data/locale/it/hammer-cli.edit.po +0 -446
  68. data/locale/it/hammer-cli.po +0 -377
  69. data/locale/it/hammer-cli.po.time_stamp +0 -0
  70. data/locale/ja/hammer-cli.edit.po +0 -445
  71. data/locale/ja/hammer-cli.po +0 -363
  72. data/locale/ja/hammer-cli.po.time_stamp +0 -0
  73. data/locale/ko/hammer-cli.edit.po +0 -445
  74. data/locale/ko/hammer-cli.po +0 -364
  75. data/locale/ko/hammer-cli.po.time_stamp +0 -0
  76. data/locale/pt_BR/hammer-cli.edit.po +0 -449
  77. data/locale/pt_BR/hammer-cli.po +0 -374
  78. data/locale/pt_BR/hammer-cli.po.time_stamp +0 -0
  79. data/locale/ru/hammer-cli.edit.po +0 -448
  80. data/locale/ru/hammer-cli.po +0 -374
  81. data/locale/ru/hammer-cli.po.time_stamp +0 -0
  82. data/locale/zanata.xml +0 -28
  83. data/locale/zh_CN/hammer-cli.edit.po +0 -445
  84. data/locale/zh_CN/hammer-cli.po +0 -367
  85. data/locale/zh_CN/hammer-cli.po.time_stamp +0 -0
  86. data/locale/zh_TW/hammer-cli.edit.po +0 -445
  87. data/locale/zh_TW/hammer-cli.po +0 -364
  88. data/locale/zh_TW/hammer-cli.po.time_stamp +0 -0
  89. data/test/reports/TEST-Fields-ContainerField-display-.xml +0 -7
  90. data/test/reports/TEST-Fields-ContainerField-display-blank-is-allowed.xml +0 -15
  91. data/test/reports/TEST-Fields-ContainerField-display-blank-is-not-allowed.xml +0 -15
  92. data/test/reports/TEST-Fields-ContainerField.xml +0 -7
  93. data/test/reports/TEST-Fields-Field-display-.xml +0 -7
  94. data/test/reports/TEST-Fields-Field-display-blank-is-allowed.xml +0 -11
  95. data/test/reports/TEST-Fields-Field-display-blank-is-not-allowed.xml +0 -11
  96. data/test/reports/TEST-Fields-Field-hide-blank-.xml +0 -11
  97. data/test/reports/TEST-Fields-Field-parameters.xml +0 -9
  98. data/test/reports/TEST-Fields-Field.xml +0 -13
  99. data/test/reports/TEST-HammerCLI-AbstractCommand-build-options.xml +0 -15
  100. data/test/reports/TEST-HammerCLI-AbstractCommand-exception-handler.xml +0 -13
  101. data/test/reports/TEST-HammerCLI-AbstractCommand-logging.xml +0 -21
  102. data/test/reports/TEST-HammerCLI-AbstractCommand-option-builder.xml +0 -11
  103. data/test/reports/TEST-HammerCLI-AbstractCommand-options.xml +0 -11
  104. data/test/reports/TEST-HammerCLI-AbstractCommand-output.xml +0 -19
  105. data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-remove-subcommand.xml +0 -11
  106. data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand-.xml +0 -13
  107. data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior-subcommand.xml +0 -11
  108. data/test/reports/TEST-HammerCLI-AbstractCommand-subcommand-behavior.xml +0 -7
  109. data/test/reports/TEST-HammerCLI-AbstractCommand.xml +0 -11
  110. data/test/reports/TEST-HammerCLI-Apipie-Command-options.xml +0 -11
  111. data/test/reports/TEST-HammerCLI-Apipie-Command-resource-defined.xml +0 -9
  112. data/test/reports/TEST-HammerCLI-Apipie-Command-setting-resources.xml +0 -19
  113. data/test/reports/TEST-HammerCLI-Apipie-Command.xml +0 -9
  114. data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-aliasing-resources.xml +0 -13
  115. data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-filtering-options.xml +0 -15
  116. data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-required-options.xml +0 -11
  117. data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-setting-correct-normalizers.xml +0 -9
  118. data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-hash-params.xml +0 -11
  119. data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder-with-one-simple-param.xml +0 -15
  120. data/test/reports/TEST-HammerCLI-Apipie-OptionBuilder.xml +0 -7
  121. data/test/reports/TEST-HammerCLI-Completer-command-completion.xml +0 -29
  122. data/test/reports/TEST-HammerCLI-Completer-option-value-completion.xml +0 -17
  123. data/test/reports/TEST-HammerCLI-Completer-subcommand-completion.xml +0 -19
  124. data/test/reports/TEST-HammerCLI-Completer.xml +0 -7
  125. data/test/reports/TEST-HammerCLI-CompleterLine-line-complete.xml +0 -25
  126. data/test/reports/TEST-HammerCLI-CompleterLine-splitting-words.xml +0 -29
  127. data/test/reports/TEST-HammerCLI-CompleterLine.xml +0 -7
  128. data/test/reports/TEST-HammerCLI-CompleterWord-complete-.xml +0 -23
  129. data/test/reports/TEST-HammerCLI-CompleterWord-quote.xml +0 -15
  130. data/test/reports/TEST-HammerCLI-CompleterWord-quoted-.xml +0 -13
  131. data/test/reports/TEST-HammerCLI-CompleterWord.xml +0 -7
  132. data/test/reports/TEST-HammerCLI-Connection.xml +0 -21
  133. data/test/reports/TEST-HammerCLI-ExceptionHandler.xml +0 -21
  134. data/test/reports/TEST-HammerCLI-I18n.xml +0 -11
  135. data/test/reports/TEST-HammerCLI-MainCommand-loading-context-password.xml +0 -11
  136. data/test/reports/TEST-HammerCLI-MainCommand-loading-context-username.xml +0 -11
  137. data/test/reports/TEST-HammerCLI-MainCommand-loading-context-verbose.xml +0 -9
  138. data/test/reports/TEST-HammerCLI-MainCommand-loading-context.xml +0 -7
  139. data/test/reports/TEST-HammerCLI-MainCommand.xml +0 -7
  140. data/test/reports/TEST-HammerCLI-Modules-find-by-name.xml +0 -13
  141. data/test/reports/TEST-HammerCLI-Modules-load-a-module-module-not-found.xml +0 -13
  142. data/test/reports/TEST-HammerCLI-Modules-load-a-module-module-runtime-exception.xml +0 -13
  143. data/test/reports/TEST-HammerCLI-Modules-load-a-module-success.xml +0 -15
  144. data/test/reports/TEST-HammerCLI-Modules-load-a-module.xml +0 -7
  145. data/test/reports/TEST-HammerCLI-Modules-load-all-modules.xml +0 -9
  146. data/test/reports/TEST-HammerCLI-Modules-names.xml +0 -13
  147. data/test/reports/TEST-HammerCLI-Modules.xml +0 -7
  148. data/test/reports/TEST-HammerCLI-OptionBuilderContainer.0.xml +0 -7
  149. data/test/reports/TEST-HammerCLI-OptionBuilderContainer.xml +0 -11
  150. data/test/reports/TEST-HammerCLI-Options-Normalizers-abstract.xml +0 -9
  151. data/test/reports/TEST-HammerCLI-Options-Normalizers-bool.xml +0 -31
  152. data/test/reports/TEST-HammerCLI-Options-Normalizers-datetime.xml +0 -17
  153. data/test/reports/TEST-HammerCLI-Options-Normalizers-enum.xml +0 -15
  154. data/test/reports/TEST-HammerCLI-Options-Normalizers-enumlist.xml +0 -21
  155. data/test/reports/TEST-HammerCLI-Options-Normalizers-json-input.xml +0 -15
  156. data/test/reports/TEST-HammerCLI-Options-Normalizers-key-value-list.xml +0 -17
  157. data/test/reports/TEST-HammerCLI-Options-Normalizers-list.xml +0 -15
  158. data/test/reports/TEST-HammerCLI-Options-Normalizers.xml +0 -7
  159. data/test/reports/TEST-HammerCLI-Options-OptionDefinition-context.xml +0 -9
  160. data/test/reports/TEST-HammerCLI-Options-OptionDefinition-formatters.xml +0 -11
  161. data/test/reports/TEST-HammerCLI-Options-OptionDefinition.xml +0 -7
  162. data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-error-messages.xml +0 -15
  163. data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-messages.xml +0 -11
  164. data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract-test-data-for-field.xml +0 -15
  165. data/test/reports/TEST-HammerCLI-Output-Adapter-Abstract.xml +0 -17
  166. data/test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection-show-ids.xml +0 -9
  167. data/test/reports/TEST-HammerCLI-Output-Adapter-Base-print-collection.xml +0 -27
  168. data/test/reports/TEST-HammerCLI-Output-Adapter-Base.xml +0 -7
  169. data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-formatters.xml +0 -11
  170. data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-collections.xml +0 -13
  171. data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-fields-with-containers.xml +0 -11
  172. data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection-handle-ids.xml +0 -11
  173. data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-collection.xml +0 -11
  174. data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues-print-message.xml +0 -11
  175. data/test/reports/TEST-HammerCLI-Output-Adapter-CSValues.xml +0 -7
  176. data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-column-width.xml +0 -15
  177. data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-formatters.xml +0 -11
  178. data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-handle-ids.xml +0 -11
  179. data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection-sort-columns.xml +0 -9
  180. data/test/reports/TEST-HammerCLI-Output-Adapter-Table-print-collection.xml +0 -11
  181. data/test/reports/TEST-HammerCLI-Output-Adapter-Table.xml +0 -7
  182. data/test/reports/TEST-HammerCLI-Output-Definition-empty-.xml +0 -11
  183. data/test/reports/TEST-HammerCLI-Output-Definition.xml +0 -11
  184. data/test/reports/TEST-HammerCLI-Output-Dsl-collection.xml +0 -13
  185. data/test/reports/TEST-HammerCLI-Output-Dsl-custom-fields.xml +0 -11
  186. data/test/reports/TEST-HammerCLI-Output-Dsl-fields.xml +0 -15
  187. data/test/reports/TEST-HammerCLI-Output-Dsl-label.xml +0 -13
  188. data/test/reports/TEST-HammerCLI-Output-Dsl-path-definition.xml +0 -13
  189. data/test/reports/TEST-HammerCLI-Output-Dsl.xml +0 -9
  190. data/test/reports/TEST-HammerCLI-Output-FieldFilter.xml +0 -13
  191. data/test/reports/TEST-HammerCLI-Output-Formatters-BooleanFormatter.xml +0 -11
  192. data/test/reports/TEST-HammerCLI-Output-Formatters-ColorFormatter.xml +0 -9
  193. data/test/reports/TEST-HammerCLI-Output-Formatters-DateFormatter.xml +0 -11
  194. data/test/reports/TEST-HammerCLI-Output-Formatters-FieldFormatter.xml +0 -13
  195. data/test/reports/TEST-HammerCLI-Output-Formatters-FormatterContainer.xml +0 -13
  196. data/test/reports/TEST-HammerCLI-Output-Formatters-FormatterLibrary.xml +0 -11
  197. data/test/reports/TEST-HammerCLI-Output-Formatters-KeyValueFormatter.xml +0 -13
  198. data/test/reports/TEST-HammerCLI-Output-Formatters-ListFormatter.xml +0 -13
  199. data/test/reports/TEST-HammerCLI-Output-Formatters-LongTextFormatter.xml +0 -13
  200. data/test/reports/TEST-HammerCLI-Output-Output-adapters.xml +0 -17
  201. data/test/reports/TEST-HammerCLI-Output-Output-data.xml +0 -15
  202. data/test/reports/TEST-HammerCLI-Output-Output-formatters.xml +0 -9
  203. data/test/reports/TEST-HammerCLI-Output-Output-messages.xml +0 -19
  204. data/test/reports/TEST-HammerCLI-Output-Output.xml +0 -7
  205. data/test/reports/TEST-HammerCLI-Output-RecordCollection.xml +0 -13
  206. data/test/reports/TEST-HammerCLI-Settings-load-from-paths.xml +0 -15
  207. data/test/reports/TEST-HammerCLI-Settings.xml +0 -25
  208. data/test/reports/TEST-HammerCLI-ShellHistory-loading-old-history.xml +0 -11
  209. data/test/reports/TEST-HammerCLI-ShellHistory-saving-history.xml +0 -15
  210. data/test/reports/TEST-HammerCLI-ShellHistory.xml +0 -7
  211. data/test/reports/TEST-MiniTest-Spec.xml +0 -7
  212. data/test/reports/TEST-String-camelize.xml +0 -11
  213. data/test/reports/TEST-String-formatting.xml +0 -17
  214. data/test/reports/TEST-String-indent.xml +0 -11
  215. data/test/reports/TEST-String-interactive-.xml +0 -13
  216. data/test/reports/TEST-String.xml +0 -7
  217. data/test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint-exist-.xml +0 -13
  218. data/test/reports/TEST-constraints-HammerCLI-Validator-AllConstraint.xml +0 -7
  219. data/test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint-exist-.xml +0 -13
  220. data/test/reports/TEST-constraints-HammerCLI-Validator-AnyConstraint.xml +0 -7
  221. data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-exist-.xml +0 -9
  222. data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-rejected.xml +0 -13
  223. data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint-required.xml +0 -13
  224. data/test/reports/TEST-constraints-HammerCLI-Validator-BaseConstraint.xml +0 -7
  225. data/test/reports/TEST-constraints.xml +0 -7
@@ -1,31 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Options::Normalizers::bool" tests="12" time="0.000919283" failures="0" errors="0" skipped="0" assertions="20">
3
- <testcase name="test_0007_should return false on f" time="0.000112739" assertions="2">
4
- </testcase>
5
- <testcase name="test_0009_should return false on n" time="5.8519e-05" assertions="2">
6
- </testcase>
7
- <testcase name="test_0004_should return true on y" time="5.0497e-05" assertions="2">
8
- </testcase>
9
- <testcase name="test_0001_should return true on true" time="4.9458e-05" assertions="2">
10
- </testcase>
11
- <testcase name="test_0002_should return true on t" time="4.6859e-05" assertions="2">
12
- </testcase>
13
- <testcase name="test_0010_should return false on 0" time="4.2037e-05" assertions="1">
14
- </testcase>
15
- <testcase name="test_0012_should raise exception on other values" time="6.0655e-05" assertions="1">
16
- </testcase>
17
- <testcase name="test_0006_should return false on false" time="4.7529e-05" assertions="2">
18
- </testcase>
19
- <testcase name="test_0008_should return false on no" time="4.6603e-05" assertions="2">
20
- </testcase>
21
- <testcase name="test_0003_should return true on yes" time="4.6822e-05" assertions="2">
22
- </testcase>
23
- <testcase name="test_0011_should raise exception on nil" time="6.4342e-05" assertions="1">
24
- </testcase>
25
- <testcase name="test_0005_should return true on 1" time="5.4586e-05" assertions="1">
26
- </testcase>
27
- <system-out>
28
- </system-out>
29
- <system-err>
30
- </system-err>
31
- </testsuite>
@@ -1,17 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Options::Normalizers::datetime" tests="5" time="0.001920779" failures="0" errors="0" skipped="0" assertions="5">
3
- <testcase name="test_0001_should raise argument error when the value is nil" time="9.7358e-05" assertions="1">
4
- </testcase>
5
- <testcase name="test_0005_should accept and parse YYYY/MM/DD HH:MM:SS" time="0.000981991" assertions="1">
6
- </testcase>
7
- <testcase name="test_0004_should accept and parse YYYY-MM-DD HH:MM:SS" time="0.000103806" assertions="1">
8
- </testcase>
9
- <testcase name="test_0002_should raise argument error when the value is not a date" time="0.000192408" assertions="1">
10
- </testcase>
11
- <testcase name="test_0003_should accept and parse iso8601" time="0.000342706" assertions="1">
12
- </testcase>
13
- <system-out>
14
- </system-out>
15
- <system-err>
16
- </system-err>
17
- </testsuite>
@@ -1,15 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Options::Normalizers::enum" tests="4" time="0.00043588" failures="0" errors="0" skipped="0" assertions="4">
3
- <testcase name="test_0001_should return return value when in the list" time="8.0928e-05" assertions="1">
4
- </testcase>
5
- <testcase name="test_0002_should rise argument error when the value is nil" time="7.1243e-05" assertions="1">
6
- </testcase>
7
- <testcase name="test_0003_should rise argument error when the value is not in the list" time="5.349e-05" assertions="1">
8
- </testcase>
9
- <testcase name="test_0004_should list allowed values in description" time="4.5973e-05" assertions="1">
10
- </testcase>
11
- <system-out>
12
- </system-out>
13
- <system-err>
14
- </system-err>
15
- </testsuite>
@@ -1,21 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Options::Normalizers::enumlist" tests="7" time="0.000603916" failures="0" errors="0" skipped="0" assertions="8">
3
- <testcase name="test_0002_should raise argument error when any of the values isn't in the list" time="0.000124048" assertions="2">
4
- </testcase>
5
- <testcase name="test_0003_should remove duplicate values" time="5.6632e-05" assertions="1">
6
- </testcase>
7
- <testcase name="test_0001_should return array of values when the values are allowed" time="4.8733e-05" assertions="1">
8
- </testcase>
9
- <testcase name="test_0006_should return empty array on empty string" time="4.2973e-05" assertions="1">
10
- </testcase>
11
- <testcase name="test_0007_should list allowed values in description" time="4.6412e-05" assertions="1">
12
- </testcase>
13
- <testcase name="test_0005_should return empty array on nil" time="4.0454e-05" assertions="1">
14
- </testcase>
15
- <testcase name="test_0004_should not change order of the values" time="4.6263e-05" assertions="1">
16
- </testcase>
17
- <system-out>
18
- </system-out>
19
- <system-err>
20
- </system-err>
21
- </testsuite>
@@ -1,15 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Options::Normalizers::json input" tests="4" time="0.000587797" failures="0" errors="0" skipped="0" assertions="4">
3
- <testcase name="test_0003_should return a hash on valid json string" time="0.000110815" assertions="1">
4
- </testcase>
5
- <testcase name="test_0002_should raise exception on invalid json file contents" time="0.000105156" assertions="1">
6
- </testcase>
7
- <testcase name="test_0001_should return a hash on valid json file" time="0.000117277" assertions="1">
8
- </testcase>
9
- <testcase name="test_0004_should raise exception on invalid json string" time="7.2411e-05" assertions="1">
10
- </testcase>
11
- <system-out>
12
- </system-out>
13
- <system-err>
14
- </system-err>
15
- </testsuite>
@@ -1,17 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Options::Normalizers::key_value_list" tests="5" time="0.000501368" failures="0" errors="0" skipped="0" assertions="5">
3
- <testcase name="test_0003_should parse a string" time="9.3859e-05" assertions="1">
4
- </testcase>
5
- <testcase name="test_0004_should parse a comma separated string" time="6.4111e-05" assertions="1">
6
- </testcase>
7
- <testcase name="test_0005_should parse a comma separated string 2" time="6.4639e-05" assertions="1">
8
- </testcase>
9
- <testcase name="test_0002_should return empty array on empty string" time="4.2745e-05" assertions="1">
10
- </testcase>
11
- <testcase name="test_0001_should return empty array on nil" time="3.9525e-05" assertions="1">
12
- </testcase>
13
- <system-out>
14
- </system-out>
15
- <system-err>
16
- </system-err>
17
- </testsuite>
@@ -1,15 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Options::Normalizers::list" tests="4" time="0.000425501" failures="0" errors="0" skipped="0" assertions="4">
3
- <testcase name="test_0001_should return empty array on nil" time="9.0196e-05" assertions="1">
4
- </testcase>
5
- <testcase name="test_0002_should return empty array on empty string" time="4.7754e-05" assertions="1">
6
- </testcase>
7
- <testcase name="test_0003_should parse a string" time="4.3796e-05" assertions="1">
8
- </testcase>
9
- <testcase name="test_0004_should parse a comma separated string" time="4.1718e-05" assertions="1">
10
- </testcase>
11
- <system-out>
12
- </system-out>
13
- <system-err>
14
- </system-err>
15
- </testsuite>
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Options::Normalizers" tests="0" time="0.000156158" failures="0" errors="0" skipped="0" assertions="0">
3
- <system-out>
4
- </system-out>
5
- <system-err>
6
- </system-err>
7
- </testsuite>
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Options::OptionDefinition::context" tests="1" time="0.000755624" failures="0" errors="0" skipped="0" assertions="1">
3
- <testcase name="test_0001_should save option to context" time="0.000583284" assertions="1">
4
- </testcase>
5
- <system-out>
6
- </system-out>
7
- <system-err>
8
- </system-err>
9
- </testsuite>
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Options::OptionDefinition::formatters" tests="2" time="0.000345511" failures="0" errors="0" skipped="0" assertions="2">
3
- <testcase name="test_0002_should use formatter as a conversion block" time="0.000112646" assertions="1">
4
- </testcase>
5
- <testcase name="test_0001_should use formatter to format a default value" time="6.3393e-05" assertions="1">
6
- </testcase>
7
- <system-out>
8
- </system-out>
9
- <system-err>
10
- </system-err>
11
- </testsuite>
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Options::OptionDefinition" tests="0" time="0.000157884" failures="0" errors="0" skipped="0" assertions="0">
3
- <system-out>
4
- </system-out>
5
- <system-err>
6
- </system-err>
7
- </testsuite>
@@ -1,15 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::Abstract::error messages" tests="4" time="0.001247685" failures="0" errors="0" skipped="0" assertions="9">
3
- <testcase name="test_0004_should print formatted message with parameters" time="0.000367432" assertions="2">
4
- </testcase>
5
- <testcase name="test_0003_should print string details of error to stderr" time="0.000234009" assertions="2">
6
- </testcase>
7
- <testcase name="test_0001_should print error message to stderr" time="0.000232757" assertions="3">
8
- </testcase>
9
- <testcase name="test_0002_should print list details of error to stderr" time="0.000221498" assertions="2">
10
- </testcase>
11
- <system-out>
12
- </system-out>
13
- <system-err>
14
- </system-err>
15
- </testsuite>
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::Abstract::messages" tests="2" time="0.000717306" failures="0" errors="0" skipped="0" assertions="6">
3
- <testcase name="test_0001_should print message to stdout" time="0.000291653" assertions="3">
4
- </testcase>
5
- <testcase name="test_0002_should print formatted message with parameters" time="0.000250974" assertions="3">
6
- </testcase>
7
- <system-out>
8
- </system-out>
9
- <system-err>
10
- </system-err>
11
- </testsuite>
@@ -1,15 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::Abstract::test data_for_field" tests="4" time="0.000462768" failures="0" errors="0" skipped="0" assertions="4">
3
- <testcase name="test_0003_returns nil, if the data does not exist for the field" time="0.000119489" assertions="1">
4
- </testcase>
5
- <testcase name="test_0002_returns nil if the record is not a hash" time="6.5318e-05" assertions="1">
6
- </testcase>
7
- <testcase name="test_0004_returns the value, if data exists for the field" time="4.6135e-05" assertions="1">
8
- </testcase>
9
- <testcase name="test_0001_returns nil if the record is nil" time="4.3095e-05" assertions="1">
10
- </testcase>
11
- <system-out>
12
- </system-out>
13
- <system-err>
14
- </system-err>
15
- </testsuite>
@@ -1,17 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::Abstract" tests="5" time="0.001875442" failures="0" errors="0" skipped="0" assertions="5">
3
- <testcase name="test_0001_should have tags" time="8.5609e-05" assertions="1">
4
- </testcase>
5
- <testcase name="test_0004_should put serializers first" time="0.000800429" assertions="1">
6
- </testcase>
7
- <testcase name="test_0005_should raise not implemented on print_collection" time="8.4393e-05" assertions="1">
8
- </testcase>
9
- <testcase name="test_0002_should filter formatters with incompatible tags" time="0.00026059" assertions="1">
10
- </testcase>
11
- <testcase name="test_0003_should keep compatible formatters" time="0.000450116" assertions="1">
12
- </testcase>
13
- <system-out>
14
- </system-out>
15
- <system-err>
16
- </system-err>
17
- </testsuite>
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::Base::print_collection::show ids" tests="1" time="0.000520405" failures="0" errors="0" skipped="0" assertions="1">
3
- <testcase name="test_0001_shows ids if it's required in the context" time="0.000350487" assertions="1">
4
- </testcase>
5
- <system-out>
6
- </system-out>
7
- <system-err>
8
- </system-err>
9
- </testsuite>
@@ -1,27 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::Base::print_collection" tests="10" time="0.003472686" failures="0" errors="0" skipped="0" assertions="10">
3
- <testcase name="test_0009_skips blank values" time="0.000352332" assertions="1">
4
- </testcase>
5
- <testcase name="test_0003_aligns multiple fields" time="0.00035921" assertions="1">
6
- </testcase>
7
- <testcase name="test_0010_should print key -&gt; value" time="0.00033891" assertions="1">
8
- </testcase>
9
- <testcase name="test_0006_should print collection" time="0.000334085" assertions="1">
10
- </testcase>
11
- <testcase name="test_0007_should print unnumbered collection" time="0.000372625" assertions="1">
12
- </testcase>
13
- <testcase name="test_0004_should field with nested data" time="0.000273375" assertions="1">
14
- </testcase>
15
- <testcase name="test_0008_hides ids by default" time="0.000274323" assertions="1">
16
- </testcase>
17
- <testcase name="test_0005_should print labeled fields" time="0.000367995" assertions="1">
18
- </testcase>
19
- <testcase name="test_0002_doesn't print label when it's nil" time="0.000273541" assertions="1">
20
- </testcase>
21
- <testcase name="test_0001_should print one field" time="0.000284066" assertions="1">
22
- </testcase>
23
- <system-out>
24
- </system-out>
25
- <system-err>
26
- </system-err>
27
- </testsuite>
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::Base" tests="0" time="0.000146941" failures="0" errors="0" skipped="0" assertions="0">
3
- <system-out>
4
- </system-out>
5
- <system-err>
6
- </system-err>
7
- </testsuite>
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::CSValues::print_collection::formatters" tests="2" time="0.001033824" failures="0" errors="0" skipped="0" assertions="4">
3
- <testcase name="test_0002_should not replace nil with empty string before it applies formatters" time="0.000416477" assertions="2">
4
- </testcase>
5
- <testcase name="test_0001_should apply formatters" time="0.000426118" assertions="2">
6
- </testcase>
7
- <system-out>
8
- </system-out>
9
- <system-err>
10
- </system-err>
11
- </testsuite>
@@ -1,13 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::CSValues::print_collection::handle fields with collections" tests="3" time="0.001664601" failures="0" errors="0" skipped="0" assertions="10">
3
- <testcase name="test_0001_should print collection column name" time="0.000619312" assertions="3">
4
- </testcase>
5
- <testcase name="test_0003_should handle empty collection" time="0.000327641" assertions="3">
6
- </testcase>
7
- <testcase name="test_0002_should print collection data" time="0.000510544" assertions="4">
8
- </testcase>
9
- <system-out>
10
- </system-out>
11
- <system-err>
12
- </system-err>
13
- </testsuite>
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::CSValues::print_collection::handle fields with containers" tests="2" time="0.001160963" failures="0" errors="0" skipped="0" assertions="8">
3
- <testcase name="test_0002_should print data" time="0.000523402" assertions="4">
4
- </testcase>
5
- <testcase name="test_0001_should print column names" time="0.000455281" assertions="4">
6
- </testcase>
7
- <system-out>
8
- </system-out>
9
- <system-err>
10
- </system-err>
11
- </testsuite>
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::CSValues::print_collection::handle ids" tests="2" time="0.001007739" failures="0" errors="0" skipped="0" assertions="6">
3
- <testcase name="test_0001_should ommit column of type Id by default" time="0.000464742" assertions="4">
4
- </testcase>
5
- <testcase name="test_0002_should print column of type Id when --show-ids is set" time="0.000366296" assertions="2">
6
- </testcase>
7
- <system-out>
8
- </system-out>
9
- <system-err>
10
- </system-err>
11
- </testsuite>
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::CSValues::print_collection" tests="2" time="0.001008951" failures="0" errors="0" skipped="0" assertions="8">
3
- <testcase name="test_0001_should print column name" time="0.000454847" assertions="4">
4
- </testcase>
5
- <testcase name="test_0002_should print field value" time="0.000351916" assertions="4">
6
- </testcase>
7
- <system-out>
8
- </system-out>
9
- <system-err>
10
- </system-err>
11
- </testsuite>
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::CSValues::print message" tests="2" time="0.000902934" failures="0" errors="0" skipped="0" assertions="4">
3
- <testcase name="test_0001_shoud print a message" time="0.000388101" assertions="2">
4
- </testcase>
5
- <testcase name="test_0002_should print message, id and name of created/updated record" time="0.000330587" assertions="2">
6
- </testcase>
7
- <system-out>
8
- </system-out>
9
- <system-err>
10
- </system-err>
11
- </testsuite>
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::CSValues" tests="0" time="0.000159229" failures="0" errors="0" skipped="0" assertions="0">
3
- <system-out>
4
- </system-out>
5
- <system-err>
6
- </system-err>
7
- </testsuite>
@@ -1,15 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::Table::print_collection::column width" tests="4" time="0.00247111" failures="0" errors="0" skipped="0" assertions="4">
3
- <testcase name="test_0001_truncates string when it exceeds maximum width" time="0.000565188" assertions="1">
4
- </testcase>
5
- <testcase name="test_0002_truncates string when it exceeds width" time="0.000551994" assertions="1">
6
- </testcase>
7
- <testcase name="test_0003_sets certain width" time="0.000561764" assertions="1">
8
- </testcase>
9
- <testcase name="test_0004_gives preference to width over maximal width" time="0.000574865" assertions="1">
10
- </testcase>
11
- <system-out>
12
- </system-out>
13
- <system-err>
14
- </system-err>
15
- </testsuite>
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::Table::print_collection::formatters" tests="2" time="0.001161009" failures="0" errors="0" skipped="0" assertions="3">
3
- <testcase name="test_0001_should apply formatters" time="0.000536944" assertions="2">
4
- </testcase>
5
- <testcase name="test_0002_should not break formatting" time="0.000453818" assertions="1">
6
- </testcase>
7
- <system-out>
8
- </system-out>
9
- <system-err>
10
- </system-err>
11
- </testsuite>
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::Table::print_collection::handle ids" tests="2" time="0.00118601" failures="0" errors="0" skipped="0" assertions="4">
3
- <testcase name="test_0002_should print column of type Id when --show-ids is set" time="0.000537731" assertions="2">
4
- </testcase>
5
- <testcase name="test_0001_should ommit column of type Id by default" time="0.00046646" assertions="2">
6
- </testcase>
7
- <system-out>
8
- </system-out>
9
- <system-err>
10
- </system-err>
11
- </testsuite>
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::Table::print_collection::sort_columns" tests="1" time="0.000782934" failures="0" errors="0" skipped="0" assertions="1">
3
- <testcase name="test_0001_should sort output" time="0.000602334" assertions="1">
4
- </testcase>
5
- <system-out>
6
- </system-out>
7
- <system-err>
8
- </system-err>
9
- </testsuite>
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::Table::print_collection" tests="2" time="0.001247105" failures="0" errors="0" skipped="0" assertions="6">
3
- <testcase name="test_0001_should print column name " time="0.000552378" assertions="3">
4
- </testcase>
5
- <testcase name="test_0002_should print field value" time="0.000470992" assertions="3">
6
- </testcase>
7
- <system-out>
8
- </system-out>
9
- <system-err>
10
- </system-err>
11
- </testsuite>
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Adapter::Table" tests="0" time="0.000150369" failures="0" errors="0" skipped="0" assertions="0">
3
- <system-out>
4
- </system-out>
5
- <system-err>
6
- </system-err>
7
- </testsuite>
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Definition::empty?" tests="2" time="0.000342718" failures="0" errors="0" skipped="0" assertions="2">
3
- <testcase name="test_0002_returns false for definition with fields" time="8.793e-05" assertions="1">
4
- </testcase>
5
- <testcase name="test_0001_returns true for empty definition" time="4.5147e-05" assertions="1">
6
- </testcase>
7
- <system-out>
8
- </system-out>
9
- <system-err>
10
- </system-err>
11
- </testsuite>
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Definition" tests="2" time="0.000403606" failures="0" errors="0" skipped="0" assertions="3">
3
- <testcase name="test_0001_should be able to add field" time="0.000109946" assertions="1">
4
- </testcase>
5
- <testcase name="test_0002_append should allow to add data from another definition" time="6.2187e-05" assertions="2">
6
- </testcase>
7
- <system-out>
8
- </system-out>
9
- <system-err>
10
- </system-err>
11
- </testsuite>
@@ -1,13 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Dsl::collection" tests="3" time="0.000484859" failures="0" errors="0" skipped="0" assertions="3">
3
- <testcase name="test_0003_sets correct path to subfields" time="0.000132862" assertions="1">
4
- </testcase>
5
- <testcase name="test_0002_allows to define subfields with dsl" time="8.7726e-05" assertions="1">
6
- </testcase>
7
- <testcase name="test_0001_creates field of type Collection" time="5.9207e-05" assertions="1">
8
- </testcase>
9
- <system-out>
10
- </system-out>
11
- <system-err>
12
- </system-err>
13
- </testsuite>
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Dsl::custom fields" tests="2" time="0.000357896" failures="0" errors="0" skipped="0" assertions="2">
3
- <testcase name="test_0001_it creates field of a desired type" time="0.000123079" assertions="1">
4
- </testcase>
5
- <testcase name="test_0002_passes all options to the field instance" time="5.6043e-05" assertions="1">
6
- </testcase>
7
- <system-out>
8
- </system-out>
9
- <system-err>
10
- </system-err>
11
- </testsuite>
@@ -1,15 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Dsl::fields" tests="4" time="0.000523115" failures="0" errors="0" skipped="0" assertions="6">
3
- <testcase name="test_0002_should create field of desired type" time="0.000121347" assertions="1">
4
- </testcase>
5
- <testcase name="test_0001_should create Field as default field type" time="5.6673e-05" assertions="1">
6
- </testcase>
7
- <testcase name="test_0003_should store all field details" time="6.8223e-05" assertions="3">
8
- </testcase>
9
- <testcase name="test_0004_can define multiple fields" time="5.0459e-05" assertions="1">
10
- </testcase>
11
- <system-out>
12
- </system-out>
13
- <system-err>
14
- </system-err>
15
- </testsuite>
@@ -1,13 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Dsl::label" tests="3" time="0.000493603" failures="0" errors="0" skipped="0" assertions="3">
3
- <testcase name="test_0003_sets correct path to subfields" time="0.00014981" assertions="1">
4
- </testcase>
5
- <testcase name="test_0002_allows to define subfields with dsl" time="8.6046e-05" assertions="1">
6
- </testcase>
7
- <testcase name="test_0001_creates field of type Label" time="6.1688e-05" assertions="1">
8
- </testcase>
9
- <system-out>
10
- </system-out>
11
- <system-err>
12
- </system-err>
13
- </testsuite>
@@ -1,13 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Dsl::path definition" tests="3" time="0.000418823" failures="0" errors="0" skipped="0" assertions="4">
3
- <testcase name="test_0003_from can be nested" time="0.000100516" assertions="2">
4
- </testcase>
5
- <testcase name="test_0002_path can be nil to handle the parent structure" time="5.6098e-05" assertions="1">
6
- </testcase>
7
- <testcase name="test_0001_from appends to path" time="6.3831e-05" assertions="1">
8
- </testcase>
9
- <system-out>
10
- </system-out>
11
- <system-err>
12
- </system-err>
13
- </testsuite>
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Dsl" tests="1" time="0.000279375" failures="0" errors="0" skipped="0" assertions="1">
3
- <testcase name="test_0001_should be empty after initialization" time="0.000114708" assertions="1">
4
- </testcase>
5
- <system-out>
6
- </system-out>
7
- <system-err>
8
- </system-err>
9
- </testsuite>
@@ -1,13 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::FieldFilter" tests="3" time="0.000408181" failures="0" errors="0" skipped="0" assertions="3">
3
- <testcase name="test_0002_filters fields by class" time="9.5542e-05" assertions="1">
4
- </testcase>
5
- <testcase name="test_0001_lets all fields go by default" time="5.988e-05" assertions="1">
6
- </testcase>
7
- <testcase name="test_0003_filters fields by superclass" time="5.3417e-05" assertions="1">
8
- </testcase>
9
- <system-out>
10
- </system-out>
11
- <system-err>
12
- </system-err>
13
- </testsuite>
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Formatters::BooleanFormatter" tests="2" time="0.000326909" failures="0" errors="0" skipped="0" assertions="5">
3
- <testcase name="test_0001_says yes for true like objects" time="8.2173e-05" assertions="2">
4
- </testcase>
5
- <testcase name="test_0002_says no for false and nil and empty string" time="5.8887e-05" assertions="3">
6
- </testcase>
7
- <system-out>
8
- </system-out>
9
- <system-err>
10
- </system-err>
11
- </testsuite>
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="HammerCLI::Output::Formatters::ColorFormatter" tests="1" time="0.000268288" failures="0" errors="0" skipped="0" assertions="1">
3
- <testcase name="test_0001_colorizes the value" time="8.8793e-05" assertions="1">
4
- </testcase>
5
- <system-out>
6
- </system-out>
7
- <system-err>
8
- </system-err>
9
- </testsuite>