pokeapi_client 0.10.0 → 1.0.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +26 -24
- data/README.md +7 -6
- data/bin/bundle +5 -10
- data/bin/byebug +1 -1
- data/bin/coderay +1 -1
- data/bin/htmldiff +1 -1
- data/bin/ldiff +1 -1
- data/bin/pry +1 -1
- data/bin/racc +27 -0
- data/bin/rake +1 -1
- data/bin/rspec +1 -1
- data/bin/rubocop +1 -1
- data/bin/ruby-parse +1 -1
- data/bin/ruby-rewrite +1 -1
- data/lib/pokeapi_client/api/ability_api.rb +2 -2
- data/lib/pokeapi_client/api/berry_api.rb +2 -2
- data/lib/pokeapi_client/api/berry_firmness_api.rb +2 -2
- data/lib/pokeapi_client/api/berry_flavor_api.rb +2 -2
- data/lib/pokeapi_client/api/characteristic_api.rb +2 -2
- data/lib/pokeapi_client/api/contest_effect_api.rb +2 -2
- data/lib/pokeapi_client/api/contest_type_api.rb +2 -2
- data/lib/pokeapi_client/api/egg_group_api.rb +2 -2
- data/lib/pokeapi_client/api/encounter_condition_api.rb +2 -2
- data/lib/pokeapi_client/api/encounter_condition_value_api.rb +2 -2
- data/lib/pokeapi_client/api/encounter_method_api.rb +2 -2
- data/lib/pokeapi_client/api/evolution_chain_api.rb +2 -2
- data/lib/pokeapi_client/api/evolution_trigger_api.rb +2 -2
- data/lib/pokeapi_client/api/gender_api.rb +2 -2
- data/lib/pokeapi_client/api/generation_api.rb +2 -2
- data/lib/pokeapi_client/api/growth_rate_api.rb +2 -2
- data/lib/pokeapi_client/api/item_api.rb +2 -2
- data/lib/pokeapi_client/api/item_attribute_api.rb +2 -2
- data/lib/pokeapi_client/api/item_category_api.rb +2 -2
- data/lib/pokeapi_client/api/item_fling_effect_api.rb +2 -2
- data/lib/pokeapi_client/api/item_pocket_api.rb +2 -2
- data/lib/pokeapi_client/api/language_api.rb +2 -2
- data/lib/pokeapi_client/api/location_api.rb +2 -2
- data/lib/pokeapi_client/api/location_area_api.rb +2 -2
- data/lib/pokeapi_client/api/machine_api.rb +2 -2
- data/lib/pokeapi_client/api/move_ailment_api.rb +2 -2
- data/lib/pokeapi_client/api/move_api.rb +2 -2
- data/lib/pokeapi_client/api/move_battle_style_api.rb +2 -2
- data/lib/pokeapi_client/api/move_category_api.rb +2 -2
- data/lib/pokeapi_client/api/move_damage_class_api.rb +2 -2
- data/lib/pokeapi_client/api/move_learn_method_api.rb +2 -2
- data/lib/pokeapi_client/api/move_target_api.rb +2 -2
- data/lib/pokeapi_client/api/nature_api.rb +2 -2
- data/lib/pokeapi_client/api/pal_park_area_api.rb +2 -2
- data/lib/pokeapi_client/api/pokeathlon_stat_api.rb +2 -2
- data/lib/pokeapi_client/api/pokedex_api.rb +2 -2
- data/lib/pokeapi_client/api/pokemon_api.rb +2 -2
- data/lib/pokeapi_client/api/pokemon_color_api.rb +2 -2
- data/lib/pokeapi_client/api/pokemon_form_api.rb +2 -2
- data/lib/pokeapi_client/api/pokemon_habitat_api.rb +2 -2
- data/lib/pokeapi_client/api/pokemon_shape_api.rb +2 -2
- data/lib/pokeapi_client/api/pokemon_species_api.rb +2 -2
- data/lib/pokeapi_client/api/region_api.rb +2 -2
- data/lib/pokeapi_client/api/stat_api.rb +2 -2
- data/lib/pokeapi_client/api/super_contest_effect_api.rb +2 -2
- data/lib/pokeapi_client/api/type_api.rb +2 -2
- data/lib/pokeapi_client/api/version_api.rb +2 -2
- data/lib/pokeapi_client/api/version_group_api.rb +2 -2
- data/lib/pokeapi_client/api_client.rb +24 -22
- data/lib/pokeapi_client/api_error.rb +3 -2
- data/lib/pokeapi_client/configuration.rb +28 -9
- data/lib/pokeapi_client/version.rb +3 -3
- data/lib/pokeapi_client.rb +2 -2
- data/pokeapi_client.gemspec +6 -5
- data/spec/api/ability_api_spec.rb +4 -4
- data/spec/api/berry_api_spec.rb +4 -4
- data/spec/api/berry_firmness_api_spec.rb +4 -4
- data/spec/api/berry_flavor_api_spec.rb +4 -4
- data/spec/api/characteristic_api_spec.rb +4 -4
- data/spec/api/contest_effect_api_spec.rb +4 -4
- data/spec/api/contest_type_api_spec.rb +4 -4
- data/spec/api/egg_group_api_spec.rb +4 -4
- data/spec/api/encounter_condition_api_spec.rb +4 -4
- data/spec/api/encounter_condition_value_api_spec.rb +4 -4
- data/spec/api/encounter_method_api_spec.rb +4 -4
- data/spec/api/evolution_chain_api_spec.rb +4 -4
- data/spec/api/evolution_trigger_api_spec.rb +4 -4
- data/spec/api/gender_api_spec.rb +4 -4
- data/spec/api/generation_api_spec.rb +4 -4
- data/spec/api/growth_rate_api_spec.rb +4 -4
- data/spec/api/item_api_spec.rb +4 -4
- data/spec/api/item_attribute_api_spec.rb +4 -4
- data/spec/api/item_category_api_spec.rb +4 -4
- data/spec/api/item_fling_effect_api_spec.rb +4 -4
- data/spec/api/item_pocket_api_spec.rb +4 -4
- data/spec/api/language_api_spec.rb +4 -4
- data/spec/api/location_api_spec.rb +4 -4
- data/spec/api/location_area_api_spec.rb +4 -4
- data/spec/api/machine_api_spec.rb +4 -4
- data/spec/api/move_ailment_api_spec.rb +4 -4
- data/spec/api/move_api_spec.rb +4 -4
- data/spec/api/move_battle_style_api_spec.rb +4 -4
- data/spec/api/move_category_api_spec.rb +4 -4
- data/spec/api/move_damage_class_api_spec.rb +4 -4
- data/spec/api/move_learn_method_api_spec.rb +4 -4
- data/spec/api/move_target_api_spec.rb +4 -4
- data/spec/api/nature_api_spec.rb +4 -4
- data/spec/api/pal_park_area_api_spec.rb +4 -4
- data/spec/api/pokeathlon_stat_api_spec.rb +4 -4
- data/spec/api/pokedex_api_spec.rb +4 -4
- data/spec/api/pokemon_api_spec.rb +4 -4
- data/spec/api/pokemon_color_api_spec.rb +4 -4
- data/spec/api/pokemon_form_api_spec.rb +4 -4
- data/spec/api/pokemon_habitat_api_spec.rb +4 -4
- data/spec/api/pokemon_shape_api_spec.rb +4 -4
- data/spec/api/pokemon_species_api_spec.rb +4 -4
- data/spec/api/region_api_spec.rb +4 -4
- data/spec/api/stat_api_spec.rb +4 -4
- data/spec/api/super_contest_effect_api_spec.rb +4 -4
- data/spec/api/type_api_spec.rb +4 -4
- data/spec/api/version_api_spec.rb +4 -4
- data/spec/api/version_group_api_spec.rb +4 -4
- data/spec/spec_helper.rb +2 -2
- metadata +45 -48
- data/spec/api_client_spec.rb +0 -226
- data/spec/configuration_spec.rb +0 -42
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'BerryFirmnessApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'berry_firmness_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'BerryFirmnessApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'berry_firmness_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'BerryFlavorApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'berry_flavor_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'BerryFlavorApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'berry_flavor_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'CharacteristicApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'characteristic_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'CharacteristicApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'characteristic_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'ContestEffectApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'contest_effect_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'ContestEffectApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'contest_effect_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'ContestTypeApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'contest_type_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'ContestTypeApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'contest_type_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'EggGroupApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'egg_group_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'EggGroupApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'egg_group_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'EncounterConditionApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'encounter_condition_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'EncounterConditionApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'encounter_condition_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'EncounterConditionValueApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'encounter_condition_value_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'EncounterConditionValueApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'encounter_condition_value_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'EncounterMethodApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'encounter_method_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'EncounterMethodApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'encounter_method_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'EvolutionChainApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'evolution_chain_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'EvolutionChainApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'evolution_chain_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'EvolutionTriggerApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'evolution_trigger_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'EvolutionTriggerApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'evolution_trigger_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
data/spec/api/gender_api_spec.rb
CHANGED
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'GenderApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'gender_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'GenderApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'gender_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'GenerationApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'generation_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'GenerationApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'generation_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'GrowthRateApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'growth_rate_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'GrowthRateApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'growth_rate_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
data/spec/api/item_api_spec.rb
CHANGED
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'ItemApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'item_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'ItemApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'item_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'ItemAttributeApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'item_attribute_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'ItemAttributeApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'item_attribute_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'ItemCategoryApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'item_category_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'ItemCategoryApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'item_category_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'ItemFlingEffectApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'item_fling_effect_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'ItemFlingEffectApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'item_fling_effect_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'ItemPocketApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'item_pocket_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'ItemPocketApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'item_pocket_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'LanguageApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'language_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'LanguageApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'language_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
6
|
The version of the OpenAPI document: 20220523
|
7
|
-
Contact: blah@cliffano.com
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
|
-
|
9
|
+
Generator version: 7.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -39,7 +39,7 @@ describe 'LocationApi' do
|
|
39
39
|
# @return [String]
|
40
40
|
describe 'location_list test' do
|
41
41
|
it 'should work' do
|
42
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
@@ -49,7 +49,7 @@ describe 'LocationApi' do
|
|
49
49
|
# @return [String]
|
50
50
|
describe 'location_read test' do
|
51
51
|
it 'should work' do
|
52
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|