stormgate_world 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 +7 -0
- data/Gemfile +9 -0
- data/README.md +141 -0
- data/Rakefile +10 -0
- data/docs/ErrorResponse.md +26 -0
- data/docs/Leaderboard.md +15 -0
- data/docs/LeaderboardDumpResponse.md +22 -0
- data/docs/LeaderboardEntriesApi.md +70 -0
- data/docs/LeaderboardEntryHistory.md +18 -0
- data/docs/LeaderboardEntryHistoryEntry.md +24 -0
- data/docs/LeaderboardEntryResponse.md +52 -0
- data/docs/LeaderboardOrder.md +15 -0
- data/docs/LeaderboardResponse.md +24 -0
- data/docs/LeaderboardsApi.md +140 -0
- data/docs/MatchParticipantPlayerLeaderboardEntryResponse.md +32 -0
- data/docs/MatchParticipantPlayerResponse.md +22 -0
- data/docs/MatchParticipantResponse.md +38 -0
- data/docs/MatchResponse.md +34 -0
- data/docs/MatchResult.md +15 -0
- data/docs/MatchState.md +15 -0
- data/docs/MatchesApi.md +76 -0
- data/docs/MatchesResponse.md +24 -0
- data/docs/PlayerActivityStats.md +24 -0
- data/docs/PlayerActivityStatsRace.md +20 -0
- data/docs/PlayerMatchesResponse.md +22 -0
- data/docs/PlayerMatchupsStats.md +20 -0
- data/docs/PlayerMatchupsStatsEntry.md +34 -0
- data/docs/PlayerMatchupsStatsMatchup.md +24 -0
- data/docs/PlayerOpponentsStats.md +22 -0
- data/docs/PlayerOpponentsStatsOpponent.md +34 -0
- data/docs/PlayerPreferences.md +18 -0
- data/docs/PlayerResponse.md +28 -0
- data/docs/PlayerStatsEntry.md +36 -0
- data/docs/PlayerStatsEntryAggregated.md +34 -0
- data/docs/PlayerStatsEntryNumBreakdown.md +24 -0
- data/docs/PlayersApi.md +531 -0
- data/docs/ProfilePrivacy.md +15 -0
- data/docs/Race.md +15 -0
- data/docs/StatisticsApi.md +72 -0
- data/docs/StatsByTime.md +30 -0
- data/docs/StatsByTimeEntry.md +22 -0
- data/docs/StatsByTimeHistoryPoint.md +34 -0
- data/docs/StatsByTimeMatchLength.md +20 -0
- data/docs/StatsByTimeMatchLengthEntry.md +28 -0
- data/git_push.sh +57 -0
- data/lib/stormgate_world/api/leaderboard_entries_api.rb +81 -0
- data/lib/stormgate_world/api/leaderboards_api.rb +151 -0
- data/lib/stormgate_world/api/matches_api.rb +92 -0
- data/lib/stormgate_world/api/players_api.rb +512 -0
- data/lib/stormgate_world/api/statistics_api.rb +78 -0
- data/lib/stormgate_world/api_client.rb +394 -0
- data/lib/stormgate_world/api_error.rb +58 -0
- data/lib/stormgate_world/configuration.rb +298 -0
- data/lib/stormgate_world/models/error_response.rb +289 -0
- data/lib/stormgate_world/models/leaderboard.rb +41 -0
- data/lib/stormgate_world/models/leaderboard_dump_response.rb +274 -0
- data/lib/stormgate_world/models/leaderboard_entry_history.rb +223 -0
- data/lib/stormgate_world/models/leaderboard_entry_history_entry.rb +257 -0
- data/lib/stormgate_world/models/leaderboard_entry_response.rb +461 -0
- data/lib/stormgate_world/models/leaderboard_order.rb +40 -0
- data/lib/stormgate_world/models/leaderboard_response.rb +328 -0
- data/lib/stormgate_world/models/match_participant_player_leaderboard_entry_response.rb +309 -0
- data/lib/stormgate_world/models/match_participant_player_response.rb +241 -0
- data/lib/stormgate_world/models/match_participant_response.rb +361 -0
- data/lib/stormgate_world/models/match_response.rb +355 -0
- data/lib/stormgate_world/models/match_result.rb +41 -0
- data/lib/stormgate_world/models/match_state.rb +40 -0
- data/lib/stormgate_world/models/matches_response.rb +328 -0
- data/lib/stormgate_world/models/player_activity_stats.rb +267 -0
- data/lib/stormgate_world/models/player_activity_stats_race.rb +233 -0
- data/lib/stormgate_world/models/player_matches_response.rb +293 -0
- data/lib/stormgate_world/models/player_matchups_stats.rb +239 -0
- data/lib/stormgate_world/models/player_matchups_stats_entry.rb +337 -0
- data/lib/stormgate_world/models/player_matchups_stats_matchup.rb +293 -0
- data/lib/stormgate_world/models/player_opponents_stats.rb +274 -0
- data/lib/stormgate_world/models/player_opponents_stats_opponent.rb +343 -0
- data/lib/stormgate_world/models/player_preferences.rb +237 -0
- data/lib/stormgate_world/models/player_response.rb +285 -0
- data/lib/stormgate_world/models/player_stats_entry.rb +369 -0
- data/lib/stormgate_world/models/player_stats_entry_aggregated.rb +343 -0
- data/lib/stormgate_world/models/player_stats_entry_num_breakdown.rb +245 -0
- data/lib/stormgate_world/models/profile_privacy.rb +40 -0
- data/lib/stormgate_world/models/race.rb +41 -0
- data/lib/stormgate_world/models/stats_by_time.rb +332 -0
- data/lib/stormgate_world/models/stats_by_time_entry.rb +277 -0
- data/lib/stormgate_world/models/stats_by_time_history_point.rb +303 -0
- data/lib/stormgate_world/models/stats_by_time_match_length.rb +239 -0
- data/lib/stormgate_world/models/stats_by_time_match_length_entry.rb +265 -0
- data/lib/stormgate_world/version.rb +15 -0
- data/lib/stormgate_world.rb +79 -0
- data/openapitools.json +7 -0
- data/pkg/stormgate_world_client-1.0.0.gem +0 -0
- data/spec/api/leaderboard_entries_api_spec.rb +45 -0
- data/spec/api/leaderboards_api_spec.rb +58 -0
- data/spec/api/matches_api_spec.rb +47 -0
- data/spec/api/players_api_spec.rb +117 -0
- data/spec/api/statistics_api_spec.rb +45 -0
- data/spec/models/error_response_spec.rb +60 -0
- data/spec/models/leaderboard_dump_response_spec.rb +48 -0
- data/spec/models/leaderboard_entry_history_entry_spec.rb +54 -0
- data/spec/models/leaderboard_entry_history_spec.rb +36 -0
- data/spec/models/leaderboard_entry_response_spec.rb +138 -0
- data/spec/models/leaderboard_order_spec.rb +30 -0
- data/spec/models/leaderboard_response_spec.rb +54 -0
- data/spec/models/leaderboard_spec.rb +30 -0
- data/spec/models/match_participant_player_leaderboard_entry_response_spec.rb +78 -0
- data/spec/models/match_participant_player_response_spec.rb +48 -0
- data/spec/models/match_participant_response_spec.rb +96 -0
- data/spec/models/match_response_spec.rb +84 -0
- data/spec/models/match_result_spec.rb +30 -0
- data/spec/models/match_state_spec.rb +30 -0
- data/spec/models/matches_response_spec.rb +54 -0
- data/spec/models/player_activity_stats_race_spec.rb +42 -0
- data/spec/models/player_activity_stats_spec.rb +54 -0
- data/spec/models/player_matches_response_spec.rb +48 -0
- data/spec/models/player_matchups_stats_entry_spec.rb +84 -0
- data/spec/models/player_matchups_stats_matchup_spec.rb +54 -0
- data/spec/models/player_matchups_stats_spec.rb +42 -0
- data/spec/models/player_opponents_stats_opponent_spec.rb +84 -0
- data/spec/models/player_opponents_stats_spec.rb +48 -0
- data/spec/models/player_preferences_spec.rb +36 -0
- data/spec/models/player_response_spec.rb +66 -0
- data/spec/models/player_stats_entry_aggregated_spec.rb +84 -0
- data/spec/models/player_stats_entry_num_breakdown_spec.rb +54 -0
- data/spec/models/player_stats_entry_spec.rb +90 -0
- data/spec/models/profile_privacy_spec.rb +30 -0
- data/spec/models/race_spec.rb +30 -0
- data/spec/models/stats_by_time_entry_spec.rb +48 -0
- data/spec/models/stats_by_time_history_point_spec.rb +84 -0
- data/spec/models/stats_by_time_match_length_entry_spec.rb +66 -0
- data/spec/models/stats_by_time_match_length_spec.rb +42 -0
- data/spec/models/stats_by_time_spec.rb +72 -0
- data/spec/spec_helper.rb +111 -0
- data/stormgate_world.gemspec +40 -0
- data/stormgate_world.json +1 -0
- data/update.sh +4 -0
- metadata +260 -0
@@ -0,0 +1,36 @@
|
|
1
|
+
=begin
|
2
|
+
#api
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for OpenapiClient::PlayerPreferences
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe OpenapiClient::PlayerPreferences do
|
21
|
+
let(:instance) { OpenapiClient::PlayerPreferences.new }
|
22
|
+
|
23
|
+
describe 'test an instance of PlayerPreferences' do
|
24
|
+
it 'should create an instance of PlayerPreferences' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(OpenapiClient::PlayerPreferences)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "privacy_profile"' do
|
31
|
+
it 'should work' do
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
=begin
|
2
|
+
#api
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for OpenapiClient::PlayerResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe OpenapiClient::PlayerResponse do
|
21
|
+
let(:instance) { OpenapiClient::PlayerResponse.new }
|
22
|
+
|
23
|
+
describe 'test an instance of PlayerResponse' do
|
24
|
+
it 'should create an instance of PlayerResponse' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(OpenapiClient::PlayerResponse)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "id"' do
|
31
|
+
it 'should work' do
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe 'test attribute "anonymous"' do
|
37
|
+
it 'should work' do
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe 'test attribute "nickname"' do
|
43
|
+
it 'should work' do
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe 'test attribute "nickname_discriminator"' do
|
49
|
+
it 'should work' do
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
describe 'test attribute "leaderboard_entries"' do
|
55
|
+
it 'should work' do
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe 'test attribute "last_match_ended_at"' do
|
61
|
+
it 'should work' do
|
62
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
end
|
@@ -0,0 +1,84 @@
|
|
1
|
+
=begin
|
2
|
+
#api
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for OpenapiClient::PlayerStatsEntryAggregated
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe OpenapiClient::PlayerStatsEntryAggregated do
|
21
|
+
let(:instance) { OpenapiClient::PlayerStatsEntryAggregated.new }
|
22
|
+
|
23
|
+
describe 'test an instance of PlayerStatsEntryAggregated' do
|
24
|
+
it 'should create an instance of PlayerStatsEntryAggregated' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(OpenapiClient::PlayerStatsEntryAggregated)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "matches"' do
|
31
|
+
it 'should work' do
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe 'test attribute "matches_per_day"' do
|
37
|
+
it 'should work' do
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe 'test attribute "wins"' do
|
43
|
+
it 'should work' do
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe 'test attribute "losses"' do
|
49
|
+
it 'should work' do
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
describe 'test attribute "ties"' do
|
55
|
+
it 'should work' do
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe 'test attribute "win_rate"' do
|
61
|
+
it 'should work' do
|
62
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
describe 'test attribute "mmr"' do
|
67
|
+
it 'should work' do
|
68
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
describe 'test attribute "points"' do
|
73
|
+
it 'should work' do
|
74
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
describe 'test attribute "match_length"' do
|
79
|
+
it 'should work' do
|
80
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
=begin
|
2
|
+
#api
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for OpenapiClient::PlayerStatsEntryNumBreakdown
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe OpenapiClient::PlayerStatsEntryNumBreakdown do
|
21
|
+
let(:instance) { OpenapiClient::PlayerStatsEntryNumBreakdown.new }
|
22
|
+
|
23
|
+
describe 'test an instance of PlayerStatsEntryNumBreakdown' do
|
24
|
+
it 'should create an instance of PlayerStatsEntryNumBreakdown' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(OpenapiClient::PlayerStatsEntryNumBreakdown)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "max"' do
|
31
|
+
it 'should work' do
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe 'test attribute "min"' do
|
37
|
+
it 'should work' do
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe 'test attribute "median"' do
|
43
|
+
it 'should work' do
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe 'test attribute "average"' do
|
49
|
+
it 'should work' do
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
end
|
@@ -0,0 +1,90 @@
|
|
1
|
+
=begin
|
2
|
+
#api
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for OpenapiClient::PlayerStatsEntry
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe OpenapiClient::PlayerStatsEntry do
|
21
|
+
let(:instance) { OpenapiClient::PlayerStatsEntry.new }
|
22
|
+
|
23
|
+
describe 'test an instance of PlayerStatsEntry' do
|
24
|
+
it 'should create an instance of PlayerStatsEntry' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(OpenapiClient::PlayerStatsEntry)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "date"' do
|
31
|
+
it 'should work' do
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe 'test attribute "race"' do
|
37
|
+
it 'should work' do
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe 'test attribute "matches"' do
|
43
|
+
it 'should work' do
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe 'test attribute "wins"' do
|
49
|
+
it 'should work' do
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
describe 'test attribute "losses"' do
|
55
|
+
it 'should work' do
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe 'test attribute "ties"' do
|
61
|
+
it 'should work' do
|
62
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
describe 'test attribute "win_rate"' do
|
67
|
+
it 'should work' do
|
68
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
describe 'test attribute "mmr"' do
|
73
|
+
it 'should work' do
|
74
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
describe 'test attribute "points"' do
|
79
|
+
it 'should work' do
|
80
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
describe 'test attribute "match_length"' do
|
85
|
+
it 'should work' do
|
86
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
=begin
|
2
|
+
#api
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for OpenapiClient::ProfilePrivacy
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe OpenapiClient::ProfilePrivacy do
|
21
|
+
let(:instance) { OpenapiClient::ProfilePrivacy.new }
|
22
|
+
|
23
|
+
describe 'test an instance of ProfilePrivacy' do
|
24
|
+
it 'should create an instance of ProfilePrivacy' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(OpenapiClient::ProfilePrivacy)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
=begin
|
2
|
+
#api
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for OpenapiClient::Race
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe OpenapiClient::Race do
|
21
|
+
let(:instance) { OpenapiClient::Race.new }
|
22
|
+
|
23
|
+
describe 'test an instance of Race' do
|
24
|
+
it 'should create an instance of Race' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(OpenapiClient::Race)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
=begin
|
2
|
+
#api
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for OpenapiClient::StatsByTimeEntry
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe OpenapiClient::StatsByTimeEntry do
|
21
|
+
let(:instance) { OpenapiClient::StatsByTimeEntry.new }
|
22
|
+
|
23
|
+
describe 'test an instance of StatsByTimeEntry' do
|
24
|
+
it 'should create an instance of StatsByTimeEntry' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(OpenapiClient::StatsByTimeEntry)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "race"' do
|
31
|
+
it 'should work' do
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe 'test attribute "aggregated"' do
|
37
|
+
it 'should work' do
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe 'test attribute "history"' do
|
43
|
+
it 'should work' do
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
@@ -0,0 +1,84 @@
|
|
1
|
+
=begin
|
2
|
+
#api
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for OpenapiClient::StatsByTimeHistoryPoint
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe OpenapiClient::StatsByTimeHistoryPoint do
|
21
|
+
let(:instance) { OpenapiClient::StatsByTimeHistoryPoint.new }
|
22
|
+
|
23
|
+
describe 'test an instance of StatsByTimeHistoryPoint' do
|
24
|
+
it 'should create an instance of StatsByTimeHistoryPoint' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(OpenapiClient::StatsByTimeHistoryPoint)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "date"' do
|
31
|
+
it 'should work' do
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe 'test attribute "win_rate"' do
|
37
|
+
it 'should work' do
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe 'test attribute "win_rate_by_match_length"' do
|
43
|
+
it 'should work' do
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe 'test attribute "pick_rate"' do
|
49
|
+
it 'should work' do
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
describe 'test attribute "players_count"' do
|
55
|
+
it 'should work' do
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe 'test attribute "matches_count"' do
|
61
|
+
it 'should work' do
|
62
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
describe 'test attribute "wins_count"' do
|
67
|
+
it 'should work' do
|
68
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
describe 'test attribute "losses_count"' do
|
73
|
+
it 'should work' do
|
74
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
describe 'test attribute "matches_count_with_mirror"' do
|
79
|
+
it 'should work' do
|
80
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
=begin
|
2
|
+
#api
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for OpenapiClient::StatsByTimeMatchLengthEntry
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe OpenapiClient::StatsByTimeMatchLengthEntry do
|
21
|
+
let(:instance) { OpenapiClient::StatsByTimeMatchLengthEntry.new }
|
22
|
+
|
23
|
+
describe 'test an instance of StatsByTimeMatchLengthEntry' do
|
24
|
+
it 'should create an instance of StatsByTimeMatchLengthEntry' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(OpenapiClient::StatsByTimeMatchLengthEntry)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "date"' do
|
31
|
+
it 'should work' do
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe 'test attribute "average"' do
|
37
|
+
it 'should work' do
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe 'test attribute "median"' do
|
43
|
+
it 'should work' do
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe 'test attribute "p70"' do
|
49
|
+
it 'should work' do
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
describe 'test attribute "p90"' do
|
55
|
+
it 'should work' do
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe 'test attribute "p95"' do
|
61
|
+
it 'should work' do
|
62
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
=begin
|
2
|
+
#api
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for OpenapiClient::StatsByTimeMatchLength
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe OpenapiClient::StatsByTimeMatchLength do
|
21
|
+
let(:instance) { OpenapiClient::StatsByTimeMatchLength.new }
|
22
|
+
|
23
|
+
describe 'test an instance of StatsByTimeMatchLength' do
|
24
|
+
it 'should create an instance of StatsByTimeMatchLength' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(OpenapiClient::StatsByTimeMatchLength)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "aggregated"' do
|
31
|
+
it 'should work' do
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe 'test attribute "history"' do
|
37
|
+
it 'should work' do
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|