pokeapi_client 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/Gemfile.lock +70 -0
  4. data/README.md +185 -0
  5. data/Rakefile +10 -0
  6. data/bin/bundle +114 -0
  7. data/bin/byebug +27 -0
  8. data/bin/coderay +27 -0
  9. data/bin/htmldiff +27 -0
  10. data/bin/ldiff +27 -0
  11. data/bin/pry +27 -0
  12. data/bin/rake +27 -0
  13. data/bin/rspec +27 -0
  14. data/bin/rubocop +27 -0
  15. data/bin/ruby-parse +27 -0
  16. data/bin/ruby-rewrite +27 -0
  17. data/docs/AbilityApi.md +137 -0
  18. data/docs/BerryApi.md +137 -0
  19. data/docs/BerryFirmnessApi.md +137 -0
  20. data/docs/BerryFlavorApi.md +137 -0
  21. data/docs/CharacteristicApi.md +137 -0
  22. data/docs/ContestEffectApi.md +137 -0
  23. data/docs/ContestTypeApi.md +137 -0
  24. data/docs/EggGroupApi.md +137 -0
  25. data/docs/EncounterConditionApi.md +137 -0
  26. data/docs/EncounterConditionValueApi.md +137 -0
  27. data/docs/EncounterMethodApi.md +137 -0
  28. data/docs/EvolutionChainApi.md +137 -0
  29. data/docs/EvolutionTriggerApi.md +137 -0
  30. data/docs/GenderApi.md +137 -0
  31. data/docs/GenerationApi.md +137 -0
  32. data/docs/GrowthRateApi.md +137 -0
  33. data/docs/ItemApi.md +137 -0
  34. data/docs/ItemAttributeApi.md +137 -0
  35. data/docs/ItemCategoryApi.md +137 -0
  36. data/docs/ItemFlingEffectApi.md +137 -0
  37. data/docs/ItemPocketApi.md +137 -0
  38. data/docs/LanguageApi.md +137 -0
  39. data/docs/LocationApi.md +137 -0
  40. data/docs/LocationAreaApi.md +137 -0
  41. data/docs/MachineApi.md +137 -0
  42. data/docs/MoveAilmentApi.md +137 -0
  43. data/docs/MoveApi.md +137 -0
  44. data/docs/MoveBattleStyleApi.md +137 -0
  45. data/docs/MoveCategoryApi.md +137 -0
  46. data/docs/MoveDamageClassApi.md +137 -0
  47. data/docs/MoveLearnMethodApi.md +137 -0
  48. data/docs/MoveTargetApi.md +137 -0
  49. data/docs/NatureApi.md +137 -0
  50. data/docs/PalParkAreaApi.md +137 -0
  51. data/docs/PokeathlonStatApi.md +137 -0
  52. data/docs/PokedexApi.md +137 -0
  53. data/docs/PokemonApi.md +137 -0
  54. data/docs/PokemonColorApi.md +137 -0
  55. data/docs/PokemonFormApi.md +137 -0
  56. data/docs/PokemonHabitatApi.md +137 -0
  57. data/docs/PokemonShapeApi.md +137 -0
  58. data/docs/PokemonSpeciesApi.md +137 -0
  59. data/docs/RegionApi.md +137 -0
  60. data/docs/StatApi.md +137 -0
  61. data/docs/SuperContestEffectApi.md +137 -0
  62. data/docs/TypeApi.md +137 -0
  63. data/docs/VersionApi.md +137 -0
  64. data/docs/VersionGroupApi.md +137 -0
  65. data/git_push.sh +57 -0
  66. data/pokeapi_client.gemspec +36 -0
  67. data/spec/api/ability_api_spec.rb +54 -0
  68. data/spec/api/berry_api_spec.rb +54 -0
  69. data/spec/api/berry_firmness_api_spec.rb +54 -0
  70. data/spec/api/berry_flavor_api_spec.rb +54 -0
  71. data/spec/api/characteristic_api_spec.rb +54 -0
  72. data/spec/api/contest_effect_api_spec.rb +54 -0
  73. data/spec/api/contest_type_api_spec.rb +54 -0
  74. data/spec/api/egg_group_api_spec.rb +54 -0
  75. data/spec/api/encounter_condition_api_spec.rb +54 -0
  76. data/spec/api/encounter_condition_value_api_spec.rb +54 -0
  77. data/spec/api/encounter_method_api_spec.rb +54 -0
  78. data/spec/api/evolution_chain_api_spec.rb +54 -0
  79. data/spec/api/evolution_trigger_api_spec.rb +54 -0
  80. data/spec/api/gender_api_spec.rb +54 -0
  81. data/spec/api/generation_api_spec.rb +54 -0
  82. data/spec/api/growth_rate_api_spec.rb +54 -0
  83. data/spec/api/item_api_spec.rb +54 -0
  84. data/spec/api/item_attribute_api_spec.rb +54 -0
  85. data/spec/api/item_category_api_spec.rb +54 -0
  86. data/spec/api/item_fling_effect_api_spec.rb +54 -0
  87. data/spec/api/item_pocket_api_spec.rb +54 -0
  88. data/spec/api/language_api_spec.rb +54 -0
  89. data/spec/api/location_api_spec.rb +54 -0
  90. data/spec/api/location_area_api_spec.rb +54 -0
  91. data/spec/api/machine_api_spec.rb +54 -0
  92. data/spec/api/move_ailment_api_spec.rb +54 -0
  93. data/spec/api/move_api_spec.rb +54 -0
  94. data/spec/api/move_battle_style_api_spec.rb +54 -0
  95. data/spec/api/move_category_api_spec.rb +54 -0
  96. data/spec/api/move_damage_class_api_spec.rb +54 -0
  97. data/spec/api/move_learn_method_api_spec.rb +54 -0
  98. data/spec/api/move_target_api_spec.rb +54 -0
  99. data/spec/api/nature_api_spec.rb +54 -0
  100. data/spec/api/pal_park_area_api_spec.rb +54 -0
  101. data/spec/api/pokeathlon_stat_api_spec.rb +54 -0
  102. data/spec/api/pokedex_api_spec.rb +54 -0
  103. data/spec/api/pokemon_api_spec.rb +54 -0
  104. data/spec/api/pokemon_color_api_spec.rb +54 -0
  105. data/spec/api/pokemon_form_api_spec.rb +54 -0
  106. data/spec/api/pokemon_habitat_api_spec.rb +54 -0
  107. data/spec/api/pokemon_shape_api_spec.rb +54 -0
  108. data/spec/api/pokemon_species_api_spec.rb +54 -0
  109. data/spec/api/region_api_spec.rb +54 -0
  110. data/spec/api/stat_api_spec.rb +54 -0
  111. data/spec/api/super_contest_effect_api_spec.rb +54 -0
  112. data/spec/api/type_api_spec.rb +54 -0
  113. data/spec/api/version_api_spec.rb +54 -0
  114. data/spec/api/version_group_api_spec.rb +54 -0
  115. data/spec/api_client_spec.rb +224 -0
  116. data/spec/configuration_spec.rb +40 -0
  117. data/spec/spec_helper.rb +109 -0
  118. metadata +250 -0
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3
+
4
+ The version of the OpenAPI document: 1.0.0
5
+
6
+ Generated by: https://openapi-generator.tech
7
+ OpenAPI Generator version: 5.4.0
8
+
9
+ =end
10
+
11
+ require 'spec_helper'
12
+ require 'json'
13
+
14
+ # Unit tests for OpenapiClient::GrowthRateApi
15
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
16
+ # Please update as you see appropriate
17
+ describe 'GrowthRateApi' do
18
+ before do
19
+ # run before each test
20
+ @api_instance = OpenapiClient::GrowthRateApi.new
21
+ end
22
+
23
+ after do
24
+ # run after each test
25
+ end
26
+
27
+ describe 'test an instance of GrowthRateApi' do
28
+ it 'should create an instance of GrowthRateApi' do
29
+ expect(@api_instance).to be_instance_of(OpenapiClient::GrowthRateApi)
30
+ end
31
+ end
32
+
33
+ # unit tests for growth_rate_list
34
+ # @param [Hash] opts the optional parameters
35
+ # @option opts [Integer] :limit
36
+ # @option opts [Integer] :offset
37
+ # @return [String]
38
+ describe 'growth_rate_list test' do
39
+ it 'should work' do
40
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
41
+ end
42
+ end
43
+
44
+ # unit tests for growth_rate_read
45
+ # @param id
46
+ # @param [Hash] opts the optional parameters
47
+ # @return [String]
48
+ describe 'growth_rate_read test' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3
+
4
+ The version of the OpenAPI document: 1.0.0
5
+
6
+ Generated by: https://openapi-generator.tech
7
+ OpenAPI Generator version: 5.4.0
8
+
9
+ =end
10
+
11
+ require 'spec_helper'
12
+ require 'json'
13
+
14
+ # Unit tests for OpenapiClient::ItemApi
15
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
16
+ # Please update as you see appropriate
17
+ describe 'ItemApi' do
18
+ before do
19
+ # run before each test
20
+ @api_instance = OpenapiClient::ItemApi.new
21
+ end
22
+
23
+ after do
24
+ # run after each test
25
+ end
26
+
27
+ describe 'test an instance of ItemApi' do
28
+ it 'should create an instance of ItemApi' do
29
+ expect(@api_instance).to be_instance_of(OpenapiClient::ItemApi)
30
+ end
31
+ end
32
+
33
+ # unit tests for item_list
34
+ # @param [Hash] opts the optional parameters
35
+ # @option opts [Integer] :limit
36
+ # @option opts [Integer] :offset
37
+ # @return [String]
38
+ describe 'item_list test' do
39
+ it 'should work' do
40
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
41
+ end
42
+ end
43
+
44
+ # unit tests for item_read
45
+ # @param id
46
+ # @param [Hash] opts the optional parameters
47
+ # @return [String]
48
+ describe 'item_read test' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3
+
4
+ The version of the OpenAPI document: 1.0.0
5
+
6
+ Generated by: https://openapi-generator.tech
7
+ OpenAPI Generator version: 5.4.0
8
+
9
+ =end
10
+
11
+ require 'spec_helper'
12
+ require 'json'
13
+
14
+ # Unit tests for OpenapiClient::ItemAttributeApi
15
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
16
+ # Please update as you see appropriate
17
+ describe 'ItemAttributeApi' do
18
+ before do
19
+ # run before each test
20
+ @api_instance = OpenapiClient::ItemAttributeApi.new
21
+ end
22
+
23
+ after do
24
+ # run after each test
25
+ end
26
+
27
+ describe 'test an instance of ItemAttributeApi' do
28
+ it 'should create an instance of ItemAttributeApi' do
29
+ expect(@api_instance).to be_instance_of(OpenapiClient::ItemAttributeApi)
30
+ end
31
+ end
32
+
33
+ # unit tests for item_attribute_list
34
+ # @param [Hash] opts the optional parameters
35
+ # @option opts [Integer] :limit
36
+ # @option opts [Integer] :offset
37
+ # @return [String]
38
+ describe 'item_attribute_list test' do
39
+ it 'should work' do
40
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
41
+ end
42
+ end
43
+
44
+ # unit tests for item_attribute_read
45
+ # @param id
46
+ # @param [Hash] opts the optional parameters
47
+ # @return [String]
48
+ describe 'item_attribute_read test' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3
+
4
+ The version of the OpenAPI document: 1.0.0
5
+
6
+ Generated by: https://openapi-generator.tech
7
+ OpenAPI Generator version: 5.4.0
8
+
9
+ =end
10
+
11
+ require 'spec_helper'
12
+ require 'json'
13
+
14
+ # Unit tests for OpenapiClient::ItemCategoryApi
15
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
16
+ # Please update as you see appropriate
17
+ describe 'ItemCategoryApi' do
18
+ before do
19
+ # run before each test
20
+ @api_instance = OpenapiClient::ItemCategoryApi.new
21
+ end
22
+
23
+ after do
24
+ # run after each test
25
+ end
26
+
27
+ describe 'test an instance of ItemCategoryApi' do
28
+ it 'should create an instance of ItemCategoryApi' do
29
+ expect(@api_instance).to be_instance_of(OpenapiClient::ItemCategoryApi)
30
+ end
31
+ end
32
+
33
+ # unit tests for item_category_list
34
+ # @param [Hash] opts the optional parameters
35
+ # @option opts [Integer] :limit
36
+ # @option opts [Integer] :offset
37
+ # @return [String]
38
+ describe 'item_category_list test' do
39
+ it 'should work' do
40
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
41
+ end
42
+ end
43
+
44
+ # unit tests for item_category_read
45
+ # @param id
46
+ # @param [Hash] opts the optional parameters
47
+ # @return [String]
48
+ describe 'item_category_read test' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3
+
4
+ The version of the OpenAPI document: 1.0.0
5
+
6
+ Generated by: https://openapi-generator.tech
7
+ OpenAPI Generator version: 5.4.0
8
+
9
+ =end
10
+
11
+ require 'spec_helper'
12
+ require 'json'
13
+
14
+ # Unit tests for OpenapiClient::ItemFlingEffectApi
15
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
16
+ # Please update as you see appropriate
17
+ describe 'ItemFlingEffectApi' do
18
+ before do
19
+ # run before each test
20
+ @api_instance = OpenapiClient::ItemFlingEffectApi.new
21
+ end
22
+
23
+ after do
24
+ # run after each test
25
+ end
26
+
27
+ describe 'test an instance of ItemFlingEffectApi' do
28
+ it 'should create an instance of ItemFlingEffectApi' do
29
+ expect(@api_instance).to be_instance_of(OpenapiClient::ItemFlingEffectApi)
30
+ end
31
+ end
32
+
33
+ # unit tests for item_fling_effect_list
34
+ # @param [Hash] opts the optional parameters
35
+ # @option opts [Integer] :limit
36
+ # @option opts [Integer] :offset
37
+ # @return [String]
38
+ describe 'item_fling_effect_list test' do
39
+ it 'should work' do
40
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
41
+ end
42
+ end
43
+
44
+ # unit tests for item_fling_effect_read
45
+ # @param id
46
+ # @param [Hash] opts the optional parameters
47
+ # @return [String]
48
+ describe 'item_fling_effect_read test' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3
+
4
+ The version of the OpenAPI document: 1.0.0
5
+
6
+ Generated by: https://openapi-generator.tech
7
+ OpenAPI Generator version: 5.4.0
8
+
9
+ =end
10
+
11
+ require 'spec_helper'
12
+ require 'json'
13
+
14
+ # Unit tests for OpenapiClient::ItemPocketApi
15
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
16
+ # Please update as you see appropriate
17
+ describe 'ItemPocketApi' do
18
+ before do
19
+ # run before each test
20
+ @api_instance = OpenapiClient::ItemPocketApi.new
21
+ end
22
+
23
+ after do
24
+ # run after each test
25
+ end
26
+
27
+ describe 'test an instance of ItemPocketApi' do
28
+ it 'should create an instance of ItemPocketApi' do
29
+ expect(@api_instance).to be_instance_of(OpenapiClient::ItemPocketApi)
30
+ end
31
+ end
32
+
33
+ # unit tests for item_pocket_list
34
+ # @param [Hash] opts the optional parameters
35
+ # @option opts [Integer] :limit
36
+ # @option opts [Integer] :offset
37
+ # @return [String]
38
+ describe 'item_pocket_list test' do
39
+ it 'should work' do
40
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
41
+ end
42
+ end
43
+
44
+ # unit tests for item_pocket_read
45
+ # @param id
46
+ # @param [Hash] opts the optional parameters
47
+ # @return [String]
48
+ describe 'item_pocket_read test' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3
+
4
+ The version of the OpenAPI document: 1.0.0
5
+
6
+ Generated by: https://openapi-generator.tech
7
+ OpenAPI Generator version: 5.4.0
8
+
9
+ =end
10
+
11
+ require 'spec_helper'
12
+ require 'json'
13
+
14
+ # Unit tests for OpenapiClient::LanguageApi
15
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
16
+ # Please update as you see appropriate
17
+ describe 'LanguageApi' do
18
+ before do
19
+ # run before each test
20
+ @api_instance = OpenapiClient::LanguageApi.new
21
+ end
22
+
23
+ after do
24
+ # run after each test
25
+ end
26
+
27
+ describe 'test an instance of LanguageApi' do
28
+ it 'should create an instance of LanguageApi' do
29
+ expect(@api_instance).to be_instance_of(OpenapiClient::LanguageApi)
30
+ end
31
+ end
32
+
33
+ # unit tests for language_list
34
+ # @param [Hash] opts the optional parameters
35
+ # @option opts [Integer] :limit
36
+ # @option opts [Integer] :offset
37
+ # @return [String]
38
+ describe 'language_list test' do
39
+ it 'should work' do
40
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
41
+ end
42
+ end
43
+
44
+ # unit tests for language_read
45
+ # @param id
46
+ # @param [Hash] opts the optional parameters
47
+ # @return [String]
48
+ describe 'language_read test' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3
+
4
+ The version of the OpenAPI document: 1.0.0
5
+
6
+ Generated by: https://openapi-generator.tech
7
+ OpenAPI Generator version: 5.4.0
8
+
9
+ =end
10
+
11
+ require 'spec_helper'
12
+ require 'json'
13
+
14
+ # Unit tests for OpenapiClient::LocationApi
15
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
16
+ # Please update as you see appropriate
17
+ describe 'LocationApi' do
18
+ before do
19
+ # run before each test
20
+ @api_instance = OpenapiClient::LocationApi.new
21
+ end
22
+
23
+ after do
24
+ # run after each test
25
+ end
26
+
27
+ describe 'test an instance of LocationApi' do
28
+ it 'should create an instance of LocationApi' do
29
+ expect(@api_instance).to be_instance_of(OpenapiClient::LocationApi)
30
+ end
31
+ end
32
+
33
+ # unit tests for location_list
34
+ # @param [Hash] opts the optional parameters
35
+ # @option opts [Integer] :limit
36
+ # @option opts [Integer] :offset
37
+ # @return [String]
38
+ describe 'location_list test' do
39
+ it 'should work' do
40
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
41
+ end
42
+ end
43
+
44
+ # unit tests for location_read
45
+ # @param id
46
+ # @param [Hash] opts the optional parameters
47
+ # @return [String]
48
+ describe 'location_read test' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3
+
4
+ The version of the OpenAPI document: 1.0.0
5
+
6
+ Generated by: https://openapi-generator.tech
7
+ OpenAPI Generator version: 5.4.0
8
+
9
+ =end
10
+
11
+ require 'spec_helper'
12
+ require 'json'
13
+
14
+ # Unit tests for OpenapiClient::LocationAreaApi
15
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
16
+ # Please update as you see appropriate
17
+ describe 'LocationAreaApi' do
18
+ before do
19
+ # run before each test
20
+ @api_instance = OpenapiClient::LocationAreaApi.new
21
+ end
22
+
23
+ after do
24
+ # run after each test
25
+ end
26
+
27
+ describe 'test an instance of LocationAreaApi' do
28
+ it 'should create an instance of LocationAreaApi' do
29
+ expect(@api_instance).to be_instance_of(OpenapiClient::LocationAreaApi)
30
+ end
31
+ end
32
+
33
+ # unit tests for location_area_list
34
+ # @param [Hash] opts the optional parameters
35
+ # @option opts [Integer] :limit
36
+ # @option opts [Integer] :offset
37
+ # @return [String]
38
+ describe 'location_area_list test' do
39
+ it 'should work' do
40
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
41
+ end
42
+ end
43
+
44
+ # unit tests for location_area_read
45
+ # @param id
46
+ # @param [Hash] opts the optional parameters
47
+ # @return [String]
48
+ describe 'location_area_read test' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3
+
4
+ The version of the OpenAPI document: 1.0.0
5
+
6
+ Generated by: https://openapi-generator.tech
7
+ OpenAPI Generator version: 5.4.0
8
+
9
+ =end
10
+
11
+ require 'spec_helper'
12
+ require 'json'
13
+
14
+ # Unit tests for OpenapiClient::MachineApi
15
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
16
+ # Please update as you see appropriate
17
+ describe 'MachineApi' do
18
+ before do
19
+ # run before each test
20
+ @api_instance = OpenapiClient::MachineApi.new
21
+ end
22
+
23
+ after do
24
+ # run after each test
25
+ end
26
+
27
+ describe 'test an instance of MachineApi' do
28
+ it 'should create an instance of MachineApi' do
29
+ expect(@api_instance).to be_instance_of(OpenapiClient::MachineApi)
30
+ end
31
+ end
32
+
33
+ # unit tests for machine_list
34
+ # @param [Hash] opts the optional parameters
35
+ # @option opts [Integer] :limit
36
+ # @option opts [Integer] :offset
37
+ # @return [String]
38
+ describe 'machine_list test' do
39
+ it 'should work' do
40
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
41
+ end
42
+ end
43
+
44
+ # unit tests for machine_read
45
+ # @param id
46
+ # @param [Hash] opts the optional parameters
47
+ # @return [String]
48
+ describe 'machine_read test' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3
+
4
+ The version of the OpenAPI document: 1.0.0
5
+
6
+ Generated by: https://openapi-generator.tech
7
+ OpenAPI Generator version: 5.4.0
8
+
9
+ =end
10
+
11
+ require 'spec_helper'
12
+ require 'json'
13
+
14
+ # Unit tests for OpenapiClient::MoveAilmentApi
15
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
16
+ # Please update as you see appropriate
17
+ describe 'MoveAilmentApi' do
18
+ before do
19
+ # run before each test
20
+ @api_instance = OpenapiClient::MoveAilmentApi.new
21
+ end
22
+
23
+ after do
24
+ # run after each test
25
+ end
26
+
27
+ describe 'test an instance of MoveAilmentApi' do
28
+ it 'should create an instance of MoveAilmentApi' do
29
+ expect(@api_instance).to be_instance_of(OpenapiClient::MoveAilmentApi)
30
+ end
31
+ end
32
+
33
+ # unit tests for move_ailment_list
34
+ # @param [Hash] opts the optional parameters
35
+ # @option opts [Integer] :limit
36
+ # @option opts [Integer] :offset
37
+ # @return [String]
38
+ describe 'move_ailment_list test' do
39
+ it 'should work' do
40
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
41
+ end
42
+ end
43
+
44
+ # unit tests for move_ailment_read
45
+ # @param id
46
+ # @param [Hash] opts the optional parameters
47
+ # @return [String]
48
+ describe 'move_ailment_read test' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3
+
4
+ The version of the OpenAPI document: 1.0.0
5
+
6
+ Generated by: https://openapi-generator.tech
7
+ OpenAPI Generator version: 5.4.0
8
+
9
+ =end
10
+
11
+ require 'spec_helper'
12
+ require 'json'
13
+
14
+ # Unit tests for OpenapiClient::MoveApi
15
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
16
+ # Please update as you see appropriate
17
+ describe 'MoveApi' do
18
+ before do
19
+ # run before each test
20
+ @api_instance = OpenapiClient::MoveApi.new
21
+ end
22
+
23
+ after do
24
+ # run after each test
25
+ end
26
+
27
+ describe 'test an instance of MoveApi' do
28
+ it 'should create an instance of MoveApi' do
29
+ expect(@api_instance).to be_instance_of(OpenapiClient::MoveApi)
30
+ end
31
+ end
32
+
33
+ # unit tests for move_list
34
+ # @param [Hash] opts the optional parameters
35
+ # @option opts [Integer] :limit
36
+ # @option opts [Integer] :offset
37
+ # @return [String]
38
+ describe 'move_list test' do
39
+ it 'should work' do
40
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
41
+ end
42
+ end
43
+
44
+ # unit tests for move_read
45
+ # @param id
46
+ # @param [Hash] opts the optional parameters
47
+ # @return [String]
48
+ describe 'move_read test' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
51
+ end
52
+ end
53
+
54
+ end