hammer_cli_foreman 0.4.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of hammer_cli_foreman might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +13 -2
- data/doc/host_create.md +15 -7
- data/doc/release_notes.md +11 -0
- data/lib/hammer_cli_foreman/commands.rb +5 -1
- data/lib/hammer_cli_foreman/defaults.rb +29 -0
- data/lib/hammer_cli_foreman/host.rb +8 -1
- data/lib/hammer_cli_foreman/id_resolver.rb +1 -1
- data/lib/hammer_cli_foreman/location.rb +21 -0
- data/lib/hammer_cli_foreman/organization.rb +21 -0
- data/lib/hammer_cli_foreman/parameter.rb +7 -7
- data/lib/hammer_cli_foreman/role.rb +13 -0
- data/lib/hammer_cli_foreman/subnet.rb +1 -1
- data/lib/hammer_cli_foreman/version.rb +1 -1
- data/lib/hammer_cli_foreman.rb +2 -0
- data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/de/hammer-cli-foreman.edit.po +394 -423
- data/locale/de/hammer-cli-foreman.po +1920 -1511
- data/locale/en/hammer-cli-foreman.edit.po +188 -124
- data/locale/en/hammer-cli-foreman.po +49 -1
- data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en_GB/hammer-cli-foreman.edit.po +208 -152
- data/locale/en_GB/hammer-cli-foreman.po +1554 -1145
- data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/es/hammer-cli-foreman.edit.po +438 -464
- data/locale/es/hammer-cli-foreman.po +1930 -1519
- data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/fr/hammer-cli-foreman.edit.po +301 -328
- data/locale/fr/hammer-cli-foreman.po +1922 -1513
- data/locale/hammer-cli-foreman.pot +194 -127
- data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/it/hammer-cli-foreman.edit.po +303 -331
- data/locale/it/hammer-cli-foreman.po +1909 -1500
- data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ja/hammer-cli-foreman.edit.po +302 -330
- data/locale/ja/hammer-cli-foreman.po +1920 -1511
- data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ko/hammer-cli-foreman.edit.po +303 -332
- data/locale/ko/hammer-cli-foreman.po +1910 -1501
- data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/pt_BR/hammer-cli-foreman.edit.po +369 -393
- data/locale/pt_BR/hammer-cli-foreman.po +1916 -1506
- data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ru/hammer-cli-foreman.edit.po +344 -372
- data/locale/ru/hammer-cli-foreman.po +1940 -1531
- data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_CN/hammer-cli-foreman.edit.po +303 -331
- data/locale/zh_CN/hammer-cli-foreman.po +1905 -1496
- data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_TW/hammer-cli-foreman.edit.po +306 -334
- data/locale/zh_TW/hammer-cli-foreman.po +1908 -1499
- data/test/functional/api_expectations.rb +65 -0
- data/test/functional/command_assertions.rb +76 -0
- data/test/functional/location_test.rb +140 -0
- data/test/functional/organization_test.rb +140 -0
- data/test/functional/test_helper.rb +7 -0
- data/test/test_helper.rb +27 -0
- data/test/unit/apipie_resource_mock.rb +24 -6
- data/test/unit/architecture_test.rb +1 -1
- data/test/unit/auth_source_ldap_test.rb +1 -3
- data/test/unit/common_parameter_test.rb +1 -1
- data/test/unit/compute_resource_test.rb +1 -1
- data/test/unit/data/1.10/foreman_api.json +1 -0
- data/test/unit/data/README.md +22 -0
- data/test/unit/data/test_api.json +609 -0
- data/test/unit/defaults_test.rb +32 -0
- data/test/unit/dependency_resolver_test.rb +21 -16
- data/test/unit/domain_test.rb +1 -1
- data/test/unit/environment_test.rb +1 -1
- data/test/unit/external_usergroup_test.rb +1 -1
- data/test/unit/helpers/command.rb +5 -1
- data/test/unit/host_test.rb +16 -8
- data/test/unit/hostgroup_test.rb +1 -1
- data/test/unit/id_resolver_test.rb +40 -37
- data/test/unit/image_test.rb +1 -3
- data/test/unit/location_test.rb +1 -1
- data/test/unit/media_test.rb +3 -3
- data/test/unit/model_test.rb +1 -1
- data/test/unit/operating_system_test.rb +1 -2
- data/test/unit/option_builders_test.rb +106 -116
- data/test/unit/organization_test.rb +1 -1
- data/test/unit/partition_table_test.rb +1 -1
- data/test/unit/puppet_class_test.rb +4 -1
- data/test/unit/report_test.rb +1 -1
- data/test/unit/role_test.rb +15 -0
- data/test/unit/smart_class_parameter_test.rb +1 -1
- data/test/unit/smart_proxy_test.rb +1 -1
- data/test/unit/smart_variable_test.rb +1 -1
- data/test/unit/subnet_test.rb +1 -1
- data/test/unit/template_test.rb +1 -1
- data/test/unit/test_helper.rb +2 -29
- data/test/unit/user_test.rb +1 -2
- metadata +67 -539
- data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-CommonParameter.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-output.xml +0 -21
- data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ExceptionHandler.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand-parameters.xml +0 -46
- data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-output.xml +0 -85
- data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-output.xml +0 -21
- data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Host-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand-output.xml +0 -9
- data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand-output.xml +0 -9
- data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand-parameters.xml +0 -40
- data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml +0 -29
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml +0 -27
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-output.xml +0 -23
- data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-output.xml +0 -27
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-output.xml +0 -19
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-output.xml +0 -21
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-output.xml +0 -43
- data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand-parameters.xml +0 -12
- data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Template-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand-parameters.xml +0 -9
- data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-CreateCommand-parameters.xml +0 -19
- data/test/reports/TEST-HammerCLIForeman-User-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-output.xml +0 -23
- data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-User-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-ListCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-User-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-User-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User.xml +0 -7
- data/test/reports/TEST-MiniTest-Spec.xml +0 -7
- data/test/unit/data/1.4/foreman_api.json +0 -10387
- data/test/unit/data/1.5/foreman_api.json +0 -14130
- data/test/unit/data/1.6/foreman_api.json +0 -1
- data/test/unit/data/1.6/foreman_api_back.json +0 -1
- data/test/unit/data/1.6/whatever.json +0 -1
- data/test/unit/data/1.7/foreman_api.json +0 -1
@@ -1,13 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLIForeman::Medium::InfoCommand::parameters" tests="3" time="0.0066735" failures="0" errors="0" skipped="0" assertions="3">
|
3
|
-
<testcase name="test_0001_should accept id" time="0.002508985" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0003_should fail with no arguments" time="0.001670775" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0002_should accept name" time="0.001972029" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<system-out>
|
10
|
-
</system-out>
|
11
|
-
<system-err>
|
12
|
-
</system-err>
|
13
|
-
</testsuite>
|
@@ -1,15 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLIForeman::Medium::ListCommand::output" tests="4" time="0.013864711" failures="0" errors="0" skipped="0" assertions="7">
|
3
|
-
<testcase name="test_0001_should print records" time="0.004283104" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_should print column Name" time="0.003195645" assertions="2">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0004_should print column Path" time="0.002896755" assertions="2">
|
8
|
-
</testcase>
|
9
|
-
<testcase name="test_0003_should print column Id" time="0.00314264" assertions="2">
|
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="HammerCLIForeman::Medium::ListCommand::parameters" tests="5" time="0.012987913" failures="0" errors="0" skipped="0" assertions="5">
|
3
|
-
<testcase name="test_0005_should accept order" time="0.002809817" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_should accept search" time="0.002439702" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0004_should accept page" time="0.00236329" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<testcase name="test_0003_should accept per page" time="0.002479383" assertions="1">
|
10
|
-
</testcase>
|
11
|
-
<testcase name="test_0001_should accept no arguments" time="0.002362407" assertions="1">
|
12
|
-
</testcase>
|
13
|
-
<system-out>
|
14
|
-
</system-out>
|
15
|
-
<system-err>
|
16
|
-
</system-err>
|
17
|
-
</testsuite>
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLIForeman::Medium::UpdateCommand::parameters" tests="5" time="0.00992499" failures="0" errors="0" skipped="0" assertions="5">
|
3
|
-
<testcase name="test_0001_should accept name" time="0.002865707" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_should accept id" time="0.001797146" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0005_should fail with name or id missing" time="0.001687449" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<testcase name="test_0004_should fail with no params" time="0.001448253" assertions="1">
|
10
|
-
</testcase>
|
11
|
-
<testcase name="test_0003_should accept os ids" time="0.001760052" assertions="1">
|
12
|
-
</testcase>
|
13
|
-
<system-out>
|
14
|
-
</system-out>
|
15
|
-
<system-err>
|
16
|
-
</system-err>
|
17
|
-
</testsuite>
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLIForeman::OperatingSystem::CreateCommand::parameters" tests="2" time="0.00524649" failures="0" errors="0" skipped="0" assertions="2">
|
3
|
-
<testcase name="test_0001_should accept name, major, minor, family, release name" time="0.003078613" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_should fail with name missing" time="0.001884196" assertions="1">
|
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="HammerCLIForeman::OperatingSystem::DeleteCommand::parameters" tests="3" time="0.00659313" failures="0" errors="0" skipped="0" assertions="3">
|
3
|
-
<testcase name="test_0003_should fail with name or id missing" time="0.001884986" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_should accept id" time="0.002628375" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0001_should accept label" time="0.001782006" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<system-out>
|
10
|
-
</system-out>
|
11
|
-
<system-err>
|
12
|
-
</system-err>
|
13
|
-
</testsuite>
|
data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLIForeman::OperatingSystem::DeleteParameterCommand::parameters" tests="3" time="0.006710947" failures="0" errors="0" skipped="0" assertions="3">
|
3
|
-
<testcase name="test_0001_should accept name and os id" time="0.00300589" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_should fail with name missing" time="0.001625553" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0003_should fail with os id missing" time="0.001739108" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<system-out>
|
10
|
-
</system-out>
|
11
|
-
<system-err>
|
12
|
-
</system-err>
|
13
|
-
</testsuite>
|
@@ -1,7 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLIForeman::OperatingSystem::DeleteParameterCommand" tests="0" time="0.000426315" failures="0" errors="0" skipped="0" assertions="0">
|
3
|
-
<system-out>
|
4
|
-
</system-out>
|
5
|
-
<system-err>
|
6
|
-
</system-err>
|
7
|
-
</testsuite>
|
@@ -1,27 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLIForeman::OperatingSystem::InfoCommand::output" tests="10" time="0.070864248" failures="0" errors="0" skipped="0" assertions="19">
|
3
|
-
<testcase name="test_0005_should print column Family" time="0.004486274" assertions="2">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0009_should print column Config templates" time="0.003770611" assertions="2">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0004_should print column Release name" time="0.00368213" assertions="2">
|
8
|
-
</testcase>
|
9
|
-
<testcase name="test_0003_should print column Id" time="0.003421411" assertions="2">
|
10
|
-
</testcase>
|
11
|
-
<testcase name="test_0006_should print column Installation media" time="0.035397098" assertions="2">
|
12
|
-
</testcase>
|
13
|
-
<testcase name="test_0010_should print column Parameters" time="0.005580023" assertions="2">
|
14
|
-
</testcase>
|
15
|
-
<testcase name="test_0001_should print 1 records" time="0.003929247" assertions="1">
|
16
|
-
</testcase>
|
17
|
-
<testcase name="test_0002_should print column Name" time="0.003338581" assertions="2">
|
18
|
-
</testcase>
|
19
|
-
<testcase name="test_0008_should print column Partition tables" time="0.003119648" assertions="2">
|
20
|
-
</testcase>
|
21
|
-
<testcase name="test_0007_should print column Architectures" time="0.00362081" assertions="2">
|
22
|
-
</testcase>
|
23
|
-
<system-out>
|
24
|
-
</system-out>
|
25
|
-
<system-err>
|
26
|
-
</system-err>
|
27
|
-
</testsuite>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLIForeman::OperatingSystem::InfoCommand::parameters" tests="3" time="0.008578197" failures="0" errors="0" skipped="0" assertions="3">
|
3
|
-
<testcase name="test_0003_should fail with no arguments" time="0.002496017" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_should accept label" time="0.002755917" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0001_should accept id" time="0.002853171" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<system-out>
|
10
|
-
</system-out>
|
11
|
-
<system-err>
|
12
|
-
</system-err>
|
13
|
-
</testsuite>
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLIForeman::OperatingSystem::ListCommand::output" tests="5" time="0.013731151" failures="0" errors="0" skipped="0" assertions="9">
|
3
|
-
<testcase name="test_0003_should print column Id" time="0.003063401" assertions="2">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0001_should print records" time="0.002181122" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0005_should print column Family" time="0.003599276" assertions="2">
|
8
|
-
</testcase>
|
9
|
-
<testcase name="test_0004_should print column Release name" time="0.002380025" assertions="2">
|
10
|
-
</testcase>
|
11
|
-
<testcase name="test_0002_should print column Name" time="0.002131084" assertions="2">
|
12
|
-
</testcase>
|
13
|
-
<system-out>
|
14
|
-
</system-out>
|
15
|
-
<system-err>
|
16
|
-
</system-err>
|
17
|
-
</testsuite>
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLIForeman::OperatingSystem::ListCommand::parameters" tests="5" time="0.010184054" failures="0" errors="0" skipped="0" assertions="5">
|
3
|
-
<testcase name="test_0005_should accept order" time="0.002294416" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_should accept search" time="0.001869337" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0001_should accept no arguments" time="0.001806572" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<testcase name="test_0004_should accept page" time="0.001867005" assertions="1">
|
10
|
-
</testcase>
|
11
|
-
<testcase name="test_0003_should accept per page" time="0.001829945" 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="HammerCLIForeman::OperatingSystem::SetParameterCommand::parameters" tests="4" time="0.00773166" failures="0" errors="0" skipped="0" assertions="4">
|
3
|
-
<testcase name="test_0004_should fail with os id missing" time="0.001941729" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_should fail with name missing" time="0.001539665" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0001_should accept name, value and os id" time="0.002401673" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<testcase name="test_0003_should fail with value missing" time="0.001507224" 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="HammerCLIForeman::OperatingSystem::SetParameterCommand" tests="0" time="0.000389526" failures="0" errors="0" skipped="0" assertions="0">
|
3
|
-
<system-out>
|
4
|
-
</system-out>
|
5
|
-
<system-err>
|
6
|
-
</system-err>
|
7
|
-
</testsuite>
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLIForeman::OperatingSystem::UpdateCommand::parameters" tests="5" time="0.035521053" failures="0" errors="0" skipped="0" assertions="5">
|
3
|
-
<testcase name="test_0001_should accept label" time="0.003067915" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_should accept id" time="0.024758313" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0004_should fail with no params" time="0.002482301" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<testcase name="test_0003_should accept name, major, minor, family, release name" time="0.00259364" assertions="1">
|
10
|
-
</testcase>
|
11
|
-
<testcase name="test_0005_should fail with label or id missing" time="0.002258408" assertions="1">
|
12
|
-
</testcase>
|
13
|
-
<system-out>
|
14
|
-
</system-out>
|
15
|
-
<system-err>
|
16
|
-
</system-err>
|
17
|
-
</testsuite>
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLIForeman::Organization::CreateCommand::parameters" tests="2" time="0.004392451" failures="0" errors="0" skipped="0" assertions="2">
|
3
|
-
<testcase name="test_0001_should accept name" time="0.002700105" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_should fail with name missing" time="0.001362091" 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="HammerCLIForeman::Organization::CreateCommand::resource disabled" tests="2" time="0.005135481" failures="0" errors="0" skipped="0" assertions="4">
|
3
|
-
<testcase name="test_0001_should return error" time="0.002241921" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0002_should print error message" time="0.002485348" assertions="3">
|
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="HammerCLIForeman::Organization::DeleteCommand::parameters" tests="3" time="0.005864237" failures="0" errors="0" skipped="0" assertions="3">
|
3
|
-
<testcase name="test_0002_should accept id" time="0.002607305" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0001_should accept name" time="0.001495977" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0003_should fail with name or id missing" time="0.001453769" 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="HammerCLIForeman::Organization::DeleteCommand::resource disabled" tests="2" time="0.005659046" failures="0" errors="0" skipped="0" assertions="4">
|
3
|
-
<testcase name="test_0002_should print error message" time="0.002795572" assertions="3">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0001_should return error" time="0.002489067" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<system-out>
|
8
|
-
</system-out>
|
9
|
-
<system-err>
|
10
|
-
</system-err>
|
11
|
-
</testsuite>
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLIForeman::Organization::InfoCommand::output" tests="5" time="0.01219686" failures="0" errors="0" skipped="0" assertions="9">
|
3
|
-
<testcase name="test_0001_should print 1 records" time="0.003190006" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0003_should print column Id" time="0.002232028" assertions="2">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0002_should print column Name" time="0.002513344" assertions="2">
|
8
|
-
</testcase>
|
9
|
-
<testcase name="test_0004_should print column Created at" time="0.001990293" assertions="2">
|
10
|
-
</testcase>
|
11
|
-
<testcase name="test_0005_should print column Updated at" time="0.001904546" assertions="2">
|
12
|
-
</testcase>
|
13
|
-
<system-out>
|
14
|
-
</system-out>
|
15
|
-
<system-err>
|
16
|
-
</system-err>
|
17
|
-
</testsuite>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<testsuite name="HammerCLIForeman::Organization::InfoCommand::parameters" tests="3" time="0.00638877" failures="0" errors="0" skipped="0" assertions="3">
|
3
|
-
<testcase name="test_0002_should accept name" time="0.001921257" assertions="1">
|
4
|
-
</testcase>
|
5
|
-
<testcase name="test_0001_should accept id" time="0.002394855" assertions="1">
|
6
|
-
</testcase>
|
7
|
-
<testcase name="test_0003_should fail with no arguments" time="0.001588979" assertions="1">
|
8
|
-
</testcase>
|
9
|
-
<system-out>
|
10
|
-
</system-out>
|
11
|
-
<system-err>
|
12
|
-
</system-err>
|
13
|
-
</testsuite>
|