appmarketapi-rest 0.0.1
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 +7 -0
- data/README.md +126 -0
- data/Rakefile +8 -0
- data/appmarketapi-rest.gemspec +45 -0
- data/docs/AppMarketAPIApi.md +388 -0
- data/docs/AppmarketapiApplication.md +22 -0
- data/docs/AppmarketapiApplicationCategories.md +8 -0
- data/docs/AppmarketapiApplicationFlowImages.md +8 -0
- data/docs/AppmarketapiApplicationIcon.md +8 -0
- data/docs/AppmarketapiApplicationMode.md +7 -0
- data/docs/AppmarketapiApplicationPromotion.md +8 -0
- data/docs/AppmarketapiApplicationSupportedPlatforms.md +8 -0
- data/docs/AppmarketapiApplicationTestUsers.md +8 -0
- data/docs/AppmarketapiAuthorizeApplicationRequest.md +11 -0
- data/docs/AppmarketapiAuthorizeApplicationResponse.md +8 -0
- data/docs/AppmarketapiCategory.md +8 -0
- data/docs/AppmarketapiCreateApplicationRequest.md +9 -0
- data/docs/AppmarketapiCreateApplicationResponse.md +9 -0
- data/docs/AppmarketapiCreateDeveloperRequest.md +11 -0
- data/docs/AppmarketapiCreateDeveloperResponse.md +11 -0
- data/docs/AppmarketapiCurrentApplicationMode.md +8 -0
- data/docs/AppmarketapiDeauthorizeApplicationRequest.md +10 -0
- data/docs/AppmarketapiDeauthorizeApplicationResponse.md +7 -0
- data/docs/AppmarketapiDeveloper.md +10 -0
- data/docs/AppmarketapiExtendedApplication.md +9 -0
- data/docs/AppmarketapiFlowImage.md +9 -0
- data/docs/AppmarketapiGetApplicationIdResponse.md +8 -0
- data/docs/AppmarketapiGetApplicationResponse.md +9 -0
- data/docs/AppmarketapiGetApplicationsResponse.md +8 -0
- data/docs/AppmarketapiPlatform.md +8 -0
- data/docs/AppmarketapiSectionError.md +9 -0
- data/docs/AppmarketapiUpdateApplicationMetadata.md +14 -0
- data/docs/AppmarketapiUpdateApplicationRequest.md +16 -0
- data/docs/AppmarketapiUpdateApplicationResponse.md +17 -0
- data/docs/AppmarketapiUser.md +9 -0
- data/git_push.sh +55 -0
- data/lib/appmarketapi-rest.rb +70 -0
- data/lib/appmarketapi-rest/api/app_market_api_api.rb +450 -0
- data/lib/appmarketapi-rest/api_client.rb +388 -0
- data/lib/appmarketapi-rest/api_error.rb +38 -0
- data/lib/appmarketapi-rest/configuration.rb +202 -0
- data/lib/appmarketapi-rest/models/appmarketapi_application.rb +317 -0
- data/lib/appmarketapi-rest/models/appmarketapi_application_categories.rb +185 -0
- data/lib/appmarketapi-rest/models/appmarketapi_application_flow_images.rb +185 -0
- data/lib/appmarketapi-rest/models/appmarketapi_application_icon.rb +183 -0
- data/lib/appmarketapi-rest/models/appmarketapi_application_mode.rb +32 -0
- data/lib/appmarketapi-rest/models/appmarketapi_application_promotion.rb +183 -0
- data/lib/appmarketapi-rest/models/appmarketapi_application_supported_platforms.rb +185 -0
- data/lib/appmarketapi-rest/models/appmarketapi_application_test_users.rb +185 -0
- data/lib/appmarketapi-rest/models/appmarketapi_authorize_application_request.rb +210 -0
- data/lib/appmarketapi-rest/models/appmarketapi_authorize_application_response.rb +183 -0
- data/lib/appmarketapi-rest/models/appmarketapi_category.rb +183 -0
- data/lib/appmarketapi-rest/models/appmarketapi_create_application_request.rb +192 -0
- data/lib/appmarketapi-rest/models/appmarketapi_create_application_response.rb +192 -0
- data/lib/appmarketapi-rest/models/appmarketapi_create_developer_request.rb +210 -0
- data/lib/appmarketapi-rest/models/appmarketapi_create_developer_response.rb +210 -0
- data/lib/appmarketapi-rest/models/appmarketapi_current_application_mode.rb +183 -0
- data/lib/appmarketapi-rest/models/appmarketapi_deauthorize_application_request.rb +201 -0
- data/lib/appmarketapi-rest/models/appmarketapi_deauthorize_application_response.rb +174 -0
- data/lib/appmarketapi-rest/models/appmarketapi_developer.rb +201 -0
- data/lib/appmarketapi-rest/models/appmarketapi_extended_application.rb +192 -0
- data/lib/appmarketapi-rest/models/appmarketapi_flow_image.rb +192 -0
- data/lib/appmarketapi-rest/models/appmarketapi_get_application_id_response.rb +183 -0
- data/lib/appmarketapi-rest/models/appmarketapi_get_application_response.rb +192 -0
- data/lib/appmarketapi-rest/models/appmarketapi_get_applications_response.rb +185 -0
- data/lib/appmarketapi-rest/models/appmarketapi_platform.rb +183 -0
- data/lib/appmarketapi-rest/models/appmarketapi_section_error.rb +192 -0
- data/lib/appmarketapi-rest/models/appmarketapi_update_application_metadata.rb +237 -0
- data/lib/appmarketapi-rest/models/appmarketapi_update_application_request.rb +255 -0
- data/lib/appmarketapi-rest/models/appmarketapi_update_application_response.rb +266 -0
- data/lib/appmarketapi-rest/models/appmarketapi_user.rb +194 -0
- data/lib/appmarketapi-rest/version.rb +15 -0
- data/spec/api/app_market_api_api_spec.rb +122 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/appmarketapi_application_categories_spec.rb +41 -0
- data/spec/models/appmarketapi_application_flow_images_spec.rb +41 -0
- data/spec/models/appmarketapi_application_icon_spec.rb +41 -0
- data/spec/models/appmarketapi_application_mode_spec.rb +35 -0
- data/spec/models/appmarketapi_application_promotion_spec.rb +41 -0
- data/spec/models/appmarketapi_application_spec.rb +125 -0
- data/spec/models/appmarketapi_application_supported_platforms_spec.rb +41 -0
- data/spec/models/appmarketapi_application_test_users_spec.rb +41 -0
- data/spec/models/appmarketapi_authorize_application_request_spec.rb +59 -0
- data/spec/models/appmarketapi_authorize_application_response_spec.rb +41 -0
- data/spec/models/appmarketapi_category_spec.rb +41 -0
- data/spec/models/appmarketapi_create_application_request_spec.rb +47 -0
- data/spec/models/appmarketapi_create_application_response_spec.rb +47 -0
- data/spec/models/appmarketapi_create_developer_request_spec.rb +59 -0
- data/spec/models/appmarketapi_create_developer_response_spec.rb +59 -0
- data/spec/models/appmarketapi_current_application_mode_spec.rb +41 -0
- data/spec/models/appmarketapi_deauthorize_application_request_spec.rb +53 -0
- data/spec/models/appmarketapi_deauthorize_application_response_spec.rb +35 -0
- data/spec/models/appmarketapi_developer_spec.rb +53 -0
- data/spec/models/appmarketapi_extended_application_spec.rb +47 -0
- data/spec/models/appmarketapi_flow_image_spec.rb +47 -0
- data/spec/models/appmarketapi_get_application_id_response_spec.rb +41 -0
- data/spec/models/appmarketapi_get_application_response_spec.rb +47 -0
- data/spec/models/appmarketapi_get_applications_response_spec.rb +41 -0
- data/spec/models/appmarketapi_platform_spec.rb +41 -0
- data/spec/models/appmarketapi_section_error_spec.rb +47 -0
- data/spec/models/appmarketapi_update_application_metadata_spec.rb +77 -0
- data/spec/models/appmarketapi_update_application_request_spec.rb +89 -0
- data/spec/models/appmarketapi_update_application_response_spec.rb +95 -0
- data/spec/models/appmarketapi_user_spec.rb +47 -0
- data/spec/spec_helper.rb +111 -0
- metadata +364 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiApplicationFlowImages
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiApplicationFlowImages' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiApplicationFlowImages.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiApplicationFlowImages' do
|
|
31
|
+
it 'should create an instance of AppmarketapiApplicationFlowImages' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiApplicationFlowImages)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "images"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
end
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiApplicationIcon
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiApplicationIcon' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiApplicationIcon.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiApplicationIcon' do
|
|
31
|
+
it 'should create an instance of AppmarketapiApplicationIcon' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiApplicationIcon)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "url"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
end
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiApplicationMode
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiApplicationMode' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiApplicationMode.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiApplicationMode' do
|
|
31
|
+
it 'should create an instance of AppmarketapiApplicationMode' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiApplicationMode)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiApplicationPromotion
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiApplicationPromotion' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiApplicationPromotion.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiApplicationPromotion' do
|
|
31
|
+
it 'should create an instance of AppmarketapiApplicationPromotion' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiApplicationPromotion)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "rank"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
end
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiApplication
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiApplication' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiApplication.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiApplication' do
|
|
31
|
+
it 'should create an instance of AppmarketapiApplication' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiApplication)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "id"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
describe 'test attribute "slug"' do
|
|
42
|
+
it 'should work' do
|
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
describe 'test attribute "name"' do
|
|
48
|
+
it 'should work' do
|
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
describe 'test attribute "short_description"' do
|
|
54
|
+
it 'should work' do
|
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
describe 'test attribute "long_description"' do
|
|
60
|
+
it 'should work' do
|
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
describe 'test attribute "icon_url"' do
|
|
66
|
+
it 'should work' do
|
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
describe 'test attribute "support_url"' do
|
|
72
|
+
it 'should work' do
|
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
describe 'test attribute "support_email"' do
|
|
78
|
+
it 'should work' do
|
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
describe 'test attribute "categories"' do
|
|
84
|
+
it 'should work' do
|
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
86
|
+
end
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
describe 'test attribute "developer"' do
|
|
90
|
+
it 'should work' do
|
|
91
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
describe 'test attribute "supported_platforms"' do
|
|
96
|
+
it 'should work' do
|
|
97
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
describe 'test attribute "required_scopes"' do
|
|
102
|
+
it 'should work' do
|
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
104
|
+
end
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
describe 'test attribute "images"' do
|
|
108
|
+
it 'should work' do
|
|
109
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
110
|
+
end
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
describe 'test attribute "app_page_url"' do
|
|
114
|
+
it 'should work' do
|
|
115
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
116
|
+
end
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
describe 'test attribute "install_link"' do
|
|
120
|
+
it 'should work' do
|
|
121
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
122
|
+
end
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
end
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiApplicationSupportedPlatforms
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiApplicationSupportedPlatforms' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiApplicationSupportedPlatforms.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiApplicationSupportedPlatforms' do
|
|
31
|
+
it 'should create an instance of AppmarketapiApplicationSupportedPlatforms' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiApplicationSupportedPlatforms)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "platforms"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
end
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiApplicationTestUsers
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiApplicationTestUsers' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiApplicationTestUsers.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiApplicationTestUsers' do
|
|
31
|
+
it 'should create an instance of AppmarketapiApplicationTestUsers' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiApplicationTestUsers)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "test_user_ids"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
end
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiAuthorizeApplicationRequest
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiAuthorizeApplicationRequest' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiAuthorizeApplicationRequest.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiAuthorizeApplicationRequest' do
|
|
31
|
+
it 'should create an instance of AppmarketapiAuthorizeApplicationRequest' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiAuthorizeApplicationRequest)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "application_id"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
describe 'test attribute "user_id"' do
|
|
42
|
+
it 'should work' do
|
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
describe 'test attribute "user_token"' do
|
|
48
|
+
it 'should work' do
|
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
describe 'test attribute "selected_user_id"' do
|
|
54
|
+
it 'should work' do
|
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
end
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiAuthorizeApplicationResponse
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiAuthorizeApplicationResponse' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiAuthorizeApplicationResponse.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiAuthorizeApplicationResponse' do
|
|
31
|
+
it 'should create an instance of AppmarketapiAuthorizeApplicationResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiAuthorizeApplicationResponse)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "redirect_url"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
end
|