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.
- checksums.yaml +7 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +70 -0
- data/README.md +185 -0
- data/Rakefile +10 -0
- data/bin/bundle +114 -0
- data/bin/byebug +27 -0
- data/bin/coderay +27 -0
- data/bin/htmldiff +27 -0
- data/bin/ldiff +27 -0
- data/bin/pry +27 -0
- data/bin/rake +27 -0
- data/bin/rspec +27 -0
- data/bin/rubocop +27 -0
- data/bin/ruby-parse +27 -0
- data/bin/ruby-rewrite +27 -0
- data/docs/AbilityApi.md +137 -0
- data/docs/BerryApi.md +137 -0
- data/docs/BerryFirmnessApi.md +137 -0
- data/docs/BerryFlavorApi.md +137 -0
- data/docs/CharacteristicApi.md +137 -0
- data/docs/ContestEffectApi.md +137 -0
- data/docs/ContestTypeApi.md +137 -0
- data/docs/EggGroupApi.md +137 -0
- data/docs/EncounterConditionApi.md +137 -0
- data/docs/EncounterConditionValueApi.md +137 -0
- data/docs/EncounterMethodApi.md +137 -0
- data/docs/EvolutionChainApi.md +137 -0
- data/docs/EvolutionTriggerApi.md +137 -0
- data/docs/GenderApi.md +137 -0
- data/docs/GenerationApi.md +137 -0
- data/docs/GrowthRateApi.md +137 -0
- data/docs/ItemApi.md +137 -0
- data/docs/ItemAttributeApi.md +137 -0
- data/docs/ItemCategoryApi.md +137 -0
- data/docs/ItemFlingEffectApi.md +137 -0
- data/docs/ItemPocketApi.md +137 -0
- data/docs/LanguageApi.md +137 -0
- data/docs/LocationApi.md +137 -0
- data/docs/LocationAreaApi.md +137 -0
- data/docs/MachineApi.md +137 -0
- data/docs/MoveAilmentApi.md +137 -0
- data/docs/MoveApi.md +137 -0
- data/docs/MoveBattleStyleApi.md +137 -0
- data/docs/MoveCategoryApi.md +137 -0
- data/docs/MoveDamageClassApi.md +137 -0
- data/docs/MoveLearnMethodApi.md +137 -0
- data/docs/MoveTargetApi.md +137 -0
- data/docs/NatureApi.md +137 -0
- data/docs/PalParkAreaApi.md +137 -0
- data/docs/PokeathlonStatApi.md +137 -0
- data/docs/PokedexApi.md +137 -0
- data/docs/PokemonApi.md +137 -0
- data/docs/PokemonColorApi.md +137 -0
- data/docs/PokemonFormApi.md +137 -0
- data/docs/PokemonHabitatApi.md +137 -0
- data/docs/PokemonShapeApi.md +137 -0
- data/docs/PokemonSpeciesApi.md +137 -0
- data/docs/RegionApi.md +137 -0
- data/docs/StatApi.md +137 -0
- data/docs/SuperContestEffectApi.md +137 -0
- data/docs/TypeApi.md +137 -0
- data/docs/VersionApi.md +137 -0
- data/docs/VersionGroupApi.md +137 -0
- data/git_push.sh +57 -0
- data/pokeapi_client.gemspec +36 -0
- data/spec/api/ability_api_spec.rb +54 -0
- data/spec/api/berry_api_spec.rb +54 -0
- data/spec/api/berry_firmness_api_spec.rb +54 -0
- data/spec/api/berry_flavor_api_spec.rb +54 -0
- data/spec/api/characteristic_api_spec.rb +54 -0
- data/spec/api/contest_effect_api_spec.rb +54 -0
- data/spec/api/contest_type_api_spec.rb +54 -0
- data/spec/api/egg_group_api_spec.rb +54 -0
- data/spec/api/encounter_condition_api_spec.rb +54 -0
- data/spec/api/encounter_condition_value_api_spec.rb +54 -0
- data/spec/api/encounter_method_api_spec.rb +54 -0
- data/spec/api/evolution_chain_api_spec.rb +54 -0
- data/spec/api/evolution_trigger_api_spec.rb +54 -0
- data/spec/api/gender_api_spec.rb +54 -0
- data/spec/api/generation_api_spec.rb +54 -0
- data/spec/api/growth_rate_api_spec.rb +54 -0
- data/spec/api/item_api_spec.rb +54 -0
- data/spec/api/item_attribute_api_spec.rb +54 -0
- data/spec/api/item_category_api_spec.rb +54 -0
- data/spec/api/item_fling_effect_api_spec.rb +54 -0
- data/spec/api/item_pocket_api_spec.rb +54 -0
- data/spec/api/language_api_spec.rb +54 -0
- data/spec/api/location_api_spec.rb +54 -0
- data/spec/api/location_area_api_spec.rb +54 -0
- data/spec/api/machine_api_spec.rb +54 -0
- data/spec/api/move_ailment_api_spec.rb +54 -0
- data/spec/api/move_api_spec.rb +54 -0
- data/spec/api/move_battle_style_api_spec.rb +54 -0
- data/spec/api/move_category_api_spec.rb +54 -0
- data/spec/api/move_damage_class_api_spec.rb +54 -0
- data/spec/api/move_learn_method_api_spec.rb +54 -0
- data/spec/api/move_target_api_spec.rb +54 -0
- data/spec/api/nature_api_spec.rb +54 -0
- data/spec/api/pal_park_area_api_spec.rb +54 -0
- data/spec/api/pokeathlon_stat_api_spec.rb +54 -0
- data/spec/api/pokedex_api_spec.rb +54 -0
- data/spec/api/pokemon_api_spec.rb +54 -0
- data/spec/api/pokemon_color_api_spec.rb +54 -0
- data/spec/api/pokemon_form_api_spec.rb +54 -0
- data/spec/api/pokemon_habitat_api_spec.rb +54 -0
- data/spec/api/pokemon_shape_api_spec.rb +54 -0
- data/spec/api/pokemon_species_api_spec.rb +54 -0
- data/spec/api/region_api_spec.rb +54 -0
- data/spec/api/stat_api_spec.rb +54 -0
- data/spec/api/super_contest_effect_api_spec.rb +54 -0
- data/spec/api/type_api_spec.rb +54 -0
- data/spec/api/version_api_spec.rb +54 -0
- data/spec/api/version_group_api_spec.rb +54 -0
- data/spec/api_client_spec.rb +224 -0
- data/spec/configuration_spec.rb +40 -0
- data/spec/spec_helper.rb +109 -0
- 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::BerryFlavorApi
|
15
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
16
|
+
# Please update as you see appropriate
|
17
|
+
describe 'BerryFlavorApi' do
|
18
|
+
before do
|
19
|
+
# run before each test
|
20
|
+
@api_instance = OpenapiClient::BerryFlavorApi.new
|
21
|
+
end
|
22
|
+
|
23
|
+
after do
|
24
|
+
# run after each test
|
25
|
+
end
|
26
|
+
|
27
|
+
describe 'test an instance of BerryFlavorApi' do
|
28
|
+
it 'should create an instance of BerryFlavorApi' do
|
29
|
+
expect(@api_instance).to be_instance_of(OpenapiClient::BerryFlavorApi)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
# unit tests for berry_flavor_list
|
34
|
+
# @param [Hash] opts the optional parameters
|
35
|
+
# @option opts [Integer] :limit
|
36
|
+
# @option opts [Integer] :offset
|
37
|
+
# @return [String]
|
38
|
+
describe 'berry_flavor_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 berry_flavor_read
|
45
|
+
# @param id
|
46
|
+
# @param [Hash] opts the optional parameters
|
47
|
+
# @return [String]
|
48
|
+
describe 'berry_flavor_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::CharacteristicApi
|
15
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
16
|
+
# Please update as you see appropriate
|
17
|
+
describe 'CharacteristicApi' do
|
18
|
+
before do
|
19
|
+
# run before each test
|
20
|
+
@api_instance = OpenapiClient::CharacteristicApi.new
|
21
|
+
end
|
22
|
+
|
23
|
+
after do
|
24
|
+
# run after each test
|
25
|
+
end
|
26
|
+
|
27
|
+
describe 'test an instance of CharacteristicApi' do
|
28
|
+
it 'should create an instance of CharacteristicApi' do
|
29
|
+
expect(@api_instance).to be_instance_of(OpenapiClient::CharacteristicApi)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
# unit tests for characteristic_list
|
34
|
+
# @param [Hash] opts the optional parameters
|
35
|
+
# @option opts [Integer] :limit
|
36
|
+
# @option opts [Integer] :offset
|
37
|
+
# @return [String]
|
38
|
+
describe 'characteristic_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 characteristic_read
|
45
|
+
# @param id
|
46
|
+
# @param [Hash] opts the optional parameters
|
47
|
+
# @return [String]
|
48
|
+
describe 'characteristic_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::ContestEffectApi
|
15
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
16
|
+
# Please update as you see appropriate
|
17
|
+
describe 'ContestEffectApi' do
|
18
|
+
before do
|
19
|
+
# run before each test
|
20
|
+
@api_instance = OpenapiClient::ContestEffectApi.new
|
21
|
+
end
|
22
|
+
|
23
|
+
after do
|
24
|
+
# run after each test
|
25
|
+
end
|
26
|
+
|
27
|
+
describe 'test an instance of ContestEffectApi' do
|
28
|
+
it 'should create an instance of ContestEffectApi' do
|
29
|
+
expect(@api_instance).to be_instance_of(OpenapiClient::ContestEffectApi)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
# unit tests for contest_effect_list
|
34
|
+
# @param [Hash] opts the optional parameters
|
35
|
+
# @option opts [Integer] :limit
|
36
|
+
# @option opts [Integer] :offset
|
37
|
+
# @return [String]
|
38
|
+
describe 'contest_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 contest_effect_read
|
45
|
+
# @param id
|
46
|
+
# @param [Hash] opts the optional parameters
|
47
|
+
# @return [String]
|
48
|
+
describe 'contest_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::ContestTypeApi
|
15
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
16
|
+
# Please update as you see appropriate
|
17
|
+
describe 'ContestTypeApi' do
|
18
|
+
before do
|
19
|
+
# run before each test
|
20
|
+
@api_instance = OpenapiClient::ContestTypeApi.new
|
21
|
+
end
|
22
|
+
|
23
|
+
after do
|
24
|
+
# run after each test
|
25
|
+
end
|
26
|
+
|
27
|
+
describe 'test an instance of ContestTypeApi' do
|
28
|
+
it 'should create an instance of ContestTypeApi' do
|
29
|
+
expect(@api_instance).to be_instance_of(OpenapiClient::ContestTypeApi)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
# unit tests for contest_type_list
|
34
|
+
# @param [Hash] opts the optional parameters
|
35
|
+
# @option opts [Integer] :limit
|
36
|
+
# @option opts [Integer] :offset
|
37
|
+
# @return [String]
|
38
|
+
describe 'contest_type_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 contest_type_read
|
45
|
+
# @param id
|
46
|
+
# @param [Hash] opts the optional parameters
|
47
|
+
# @return [String]
|
48
|
+
describe 'contest_type_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::EggGroupApi
|
15
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
16
|
+
# Please update as you see appropriate
|
17
|
+
describe 'EggGroupApi' do
|
18
|
+
before do
|
19
|
+
# run before each test
|
20
|
+
@api_instance = OpenapiClient::EggGroupApi.new
|
21
|
+
end
|
22
|
+
|
23
|
+
after do
|
24
|
+
# run after each test
|
25
|
+
end
|
26
|
+
|
27
|
+
describe 'test an instance of EggGroupApi' do
|
28
|
+
it 'should create an instance of EggGroupApi' do
|
29
|
+
expect(@api_instance).to be_instance_of(OpenapiClient::EggGroupApi)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
# unit tests for egg_group_list
|
34
|
+
# @param [Hash] opts the optional parameters
|
35
|
+
# @option opts [Integer] :limit
|
36
|
+
# @option opts [Integer] :offset
|
37
|
+
# @return [String]
|
38
|
+
describe 'egg_group_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 egg_group_read
|
45
|
+
# @param id
|
46
|
+
# @param [Hash] opts the optional parameters
|
47
|
+
# @return [String]
|
48
|
+
describe 'egg_group_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::EncounterConditionApi
|
15
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
16
|
+
# Please update as you see appropriate
|
17
|
+
describe 'EncounterConditionApi' do
|
18
|
+
before do
|
19
|
+
# run before each test
|
20
|
+
@api_instance = OpenapiClient::EncounterConditionApi.new
|
21
|
+
end
|
22
|
+
|
23
|
+
after do
|
24
|
+
# run after each test
|
25
|
+
end
|
26
|
+
|
27
|
+
describe 'test an instance of EncounterConditionApi' do
|
28
|
+
it 'should create an instance of EncounterConditionApi' do
|
29
|
+
expect(@api_instance).to be_instance_of(OpenapiClient::EncounterConditionApi)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
# unit tests for encounter_condition_list
|
34
|
+
# @param [Hash] opts the optional parameters
|
35
|
+
# @option opts [Integer] :limit
|
36
|
+
# @option opts [Integer] :offset
|
37
|
+
# @return [String]
|
38
|
+
describe 'encounter_condition_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 encounter_condition_read
|
45
|
+
# @param id
|
46
|
+
# @param [Hash] opts the optional parameters
|
47
|
+
# @return [String]
|
48
|
+
describe 'encounter_condition_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::EncounterConditionValueApi
|
15
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
16
|
+
# Please update as you see appropriate
|
17
|
+
describe 'EncounterConditionValueApi' do
|
18
|
+
before do
|
19
|
+
# run before each test
|
20
|
+
@api_instance = OpenapiClient::EncounterConditionValueApi.new
|
21
|
+
end
|
22
|
+
|
23
|
+
after do
|
24
|
+
# run after each test
|
25
|
+
end
|
26
|
+
|
27
|
+
describe 'test an instance of EncounterConditionValueApi' do
|
28
|
+
it 'should create an instance of EncounterConditionValueApi' do
|
29
|
+
expect(@api_instance).to be_instance_of(OpenapiClient::EncounterConditionValueApi)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
# unit tests for encounter_condition_value_list
|
34
|
+
# @param [Hash] opts the optional parameters
|
35
|
+
# @option opts [Integer] :limit
|
36
|
+
# @option opts [Integer] :offset
|
37
|
+
# @return [String]
|
38
|
+
describe 'encounter_condition_value_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 encounter_condition_value_read
|
45
|
+
# @param id
|
46
|
+
# @param [Hash] opts the optional parameters
|
47
|
+
# @return [String]
|
48
|
+
describe 'encounter_condition_value_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::EncounterMethodApi
|
15
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
16
|
+
# Please update as you see appropriate
|
17
|
+
describe 'EncounterMethodApi' do
|
18
|
+
before do
|
19
|
+
# run before each test
|
20
|
+
@api_instance = OpenapiClient::EncounterMethodApi.new
|
21
|
+
end
|
22
|
+
|
23
|
+
after do
|
24
|
+
# run after each test
|
25
|
+
end
|
26
|
+
|
27
|
+
describe 'test an instance of EncounterMethodApi' do
|
28
|
+
it 'should create an instance of EncounterMethodApi' do
|
29
|
+
expect(@api_instance).to be_instance_of(OpenapiClient::EncounterMethodApi)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
# unit tests for encounter_method_list
|
34
|
+
# @param [Hash] opts the optional parameters
|
35
|
+
# @option opts [Integer] :limit
|
36
|
+
# @option opts [Integer] :offset
|
37
|
+
# @return [String]
|
38
|
+
describe 'encounter_method_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 encounter_method_read
|
45
|
+
# @param id
|
46
|
+
# @param [Hash] opts the optional parameters
|
47
|
+
# @return [String]
|
48
|
+
describe 'encounter_method_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::EvolutionChainApi
|
15
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
16
|
+
# Please update as you see appropriate
|
17
|
+
describe 'EvolutionChainApi' do
|
18
|
+
before do
|
19
|
+
# run before each test
|
20
|
+
@api_instance = OpenapiClient::EvolutionChainApi.new
|
21
|
+
end
|
22
|
+
|
23
|
+
after do
|
24
|
+
# run after each test
|
25
|
+
end
|
26
|
+
|
27
|
+
describe 'test an instance of EvolutionChainApi' do
|
28
|
+
it 'should create an instance of EvolutionChainApi' do
|
29
|
+
expect(@api_instance).to be_instance_of(OpenapiClient::EvolutionChainApi)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
# unit tests for evolution_chain_list
|
34
|
+
# @param [Hash] opts the optional parameters
|
35
|
+
# @option opts [Integer] :limit
|
36
|
+
# @option opts [Integer] :offset
|
37
|
+
# @return [String]
|
38
|
+
describe 'evolution_chain_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 evolution_chain_read
|
45
|
+
# @param id
|
46
|
+
# @param [Hash] opts the optional parameters
|
47
|
+
# @return [String]
|
48
|
+
describe 'evolution_chain_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::EvolutionTriggerApi
|
15
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
16
|
+
# Please update as you see appropriate
|
17
|
+
describe 'EvolutionTriggerApi' do
|
18
|
+
before do
|
19
|
+
# run before each test
|
20
|
+
@api_instance = OpenapiClient::EvolutionTriggerApi.new
|
21
|
+
end
|
22
|
+
|
23
|
+
after do
|
24
|
+
# run after each test
|
25
|
+
end
|
26
|
+
|
27
|
+
describe 'test an instance of EvolutionTriggerApi' do
|
28
|
+
it 'should create an instance of EvolutionTriggerApi' do
|
29
|
+
expect(@api_instance).to be_instance_of(OpenapiClient::EvolutionTriggerApi)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
# unit tests for evolution_trigger_list
|
34
|
+
# @param [Hash] opts the optional parameters
|
35
|
+
# @option opts [Integer] :limit
|
36
|
+
# @option opts [Integer] :offset
|
37
|
+
# @return [String]
|
38
|
+
describe 'evolution_trigger_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 evolution_trigger_read
|
45
|
+
# @param id
|
46
|
+
# @param [Hash] opts the optional parameters
|
47
|
+
# @return [String]
|
48
|
+
describe 'evolution_trigger_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::GenderApi
|
15
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
16
|
+
# Please update as you see appropriate
|
17
|
+
describe 'GenderApi' do
|
18
|
+
before do
|
19
|
+
# run before each test
|
20
|
+
@api_instance = OpenapiClient::GenderApi.new
|
21
|
+
end
|
22
|
+
|
23
|
+
after do
|
24
|
+
# run after each test
|
25
|
+
end
|
26
|
+
|
27
|
+
describe 'test an instance of GenderApi' do
|
28
|
+
it 'should create an instance of GenderApi' do
|
29
|
+
expect(@api_instance).to be_instance_of(OpenapiClient::GenderApi)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
# unit tests for gender_list
|
34
|
+
# @param [Hash] opts the optional parameters
|
35
|
+
# @option opts [Integer] :limit
|
36
|
+
# @option opts [Integer] :offset
|
37
|
+
# @return [String]
|
38
|
+
describe 'gender_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 gender_read
|
45
|
+
# @param id
|
46
|
+
# @param [Hash] opts the optional parameters
|
47
|
+
# @return [String]
|
48
|
+
describe 'gender_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::GenerationApi
|
15
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
16
|
+
# Please update as you see appropriate
|
17
|
+
describe 'GenerationApi' do
|
18
|
+
before do
|
19
|
+
# run before each test
|
20
|
+
@api_instance = OpenapiClient::GenerationApi.new
|
21
|
+
end
|
22
|
+
|
23
|
+
after do
|
24
|
+
# run after each test
|
25
|
+
end
|
26
|
+
|
27
|
+
describe 'test an instance of GenerationApi' do
|
28
|
+
it 'should create an instance of GenerationApi' do
|
29
|
+
expect(@api_instance).to be_instance_of(OpenapiClient::GenerationApi)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
# unit tests for generation_list
|
34
|
+
# @param [Hash] opts the optional parameters
|
35
|
+
# @option opts [Integer] :limit
|
36
|
+
# @option opts [Integer] :offset
|
37
|
+
# @return [String]
|
38
|
+
describe 'generation_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 generation_read
|
45
|
+
# @param id
|
46
|
+
# @param [Hash] opts the optional parameters
|
47
|
+
# @return [String]
|
48
|
+
describe 'generation_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
|