sources-api-client 1.0.0 → 3.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/CHANGELOG.md +18 -0
- data/Gemfile.lock +11 -10
- data/bundler.d/.gitkeep +0 -0
- data/bundler.d/Gemfile.dev.rb +0 -0
- data/docs/Application.md +4 -2
- data/docs/ApplicationAuthentication.md +25 -0
- data/docs/ApplicationAuthenticationsCollection.md +21 -0
- data/docs/Authentication.md +4 -2
- data/docs/DefaultApi.md +333 -45
- data/docs/Endpoint.md +4 -2
- data/docs/ErrorNotFoundErrors.md +1 -1
- data/docs/Source.md +4 -2
- data/lib/sources-api-client.rb +3 -2
- data/lib/sources-api-client/api/default_api.rb +440 -60
- data/lib/sources-api-client/api_client.rb +1 -1
- data/lib/sources-api-client/api_error.rb +1 -1
- data/lib/sources-api-client/configuration.rb +4 -4
- data/lib/sources-api-client/models/application.rb +20 -11
- data/lib/sources-api-client/models/application_authentication.rb +296 -0
- data/lib/sources-api-client/models/{tenant.rb → application_authentications_collection.rb} +25 -23
- data/lib/sources-api-client/models/application_type.rb +1 -1
- data/lib/sources-api-client/models/application_types_collection.rb +1 -1
- data/lib/sources-api-client/models/applications_collection.rb +1 -1
- data/lib/sources-api-client/models/authentication.rb +20 -11
- data/lib/sources-api-client/models/authentication_extra.rb +1 -1
- data/lib/sources-api-client/models/authentication_extra_azure.rb +1 -1
- data/lib/sources-api-client/models/authentications_collection.rb +1 -1
- data/lib/sources-api-client/models/collection_links.rb +1 -1
- data/lib/sources-api-client/models/collection_metadata.rb +1 -1
- data/lib/sources-api-client/models/endpoint.rb +20 -11
- data/lib/sources-api-client/models/endpoints_collection.rb +1 -1
- data/lib/sources-api-client/models/error_not_found.rb +1 -1
- data/lib/sources-api-client/models/error_not_found_errors.rb +2 -2
- data/lib/sources-api-client/models/graph_ql_request.rb +1 -1
- data/lib/sources-api-client/models/graph_ql_response.rb +1 -1
- data/lib/sources-api-client/models/source.rb +20 -11
- data/lib/sources-api-client/models/source_type.rb +1 -1
- data/lib/sources-api-client/models/source_types_collection.rb +1 -1
- data/lib/sources-api-client/models/sources_collection.rb +1 -1
- data/lib/sources-api-client/version.rb +2 -2
- data/sources-api-client.gemspec +1 -1
- data/spec/api/default_api_spec.rb +91 -23
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +4 -4
- data/spec/models/application_authentication_spec.rb +65 -0
- data/spec/models/{tenant_spec.rb → application_authentications_collection_spec.rb} +10 -10
- data/spec/models/application_spec.rb +9 -3
- data/spec/models/application_type_spec.rb +1 -1
- data/spec/models/application_types_collection_spec.rb +1 -1
- data/spec/models/applications_collection_spec.rb +1 -1
- data/spec/models/authentication_extra_azure_spec.rb +1 -1
- data/spec/models/authentication_extra_spec.rb +1 -1
- data/spec/models/authentication_spec.rb +13 -7
- data/spec/models/authentications_collection_spec.rb +1 -1
- data/spec/models/collection_links_spec.rb +1 -1
- data/spec/models/collection_metadata_spec.rb +1 -1
- data/spec/models/endpoint_spec.rb +13 -7
- data/spec/models/endpoints_collection_spec.rb +1 -1
- data/spec/models/error_not_found_errors_spec.rb +1 -1
- data/spec/models/error_not_found_spec.rb +1 -1
- data/spec/models/graph_ql_request_spec.rb +1 -1
- data/spec/models/graph_ql_response_spec.rb +1 -1
- data/spec/models/source_spec.rb +11 -5
- data/spec/models/source_type_spec.rb +1 -1
- data/spec/models/source_types_collection_spec.rb +1 -1
- data/spec/models/sources_collection_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +39 -33
- data/docs/Tenant.md +0 -21
- data/pkg/sources-api-client-1.0.0.gem +0 -0
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Sources
|
5
5
|
|
6
|
-
The version of the OpenAPI document:
|
6
|
+
The version of the OpenAPI document: 3.0.0
|
7
7
|
Contact: support@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.1
|
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.2.1
|
|
11
11
|
=end
|
12
12
|
|
13
13
|
module SourcesApiClient
|
14
|
-
VERSION = '
|
14
|
+
VERSION = '3.0.0'
|
15
15
|
end
|
data/sources-api-client.gemspec
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Sources
|
5
5
|
|
6
|
-
The version of the OpenAPI document:
|
6
|
+
The version of the OpenAPI document: 3.0.0
|
7
7
|
Contact: support@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.1
|
@@ -56,6 +56,18 @@ describe 'DefaultApi' do
|
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
+
# unit tests for create_application_authentication
|
60
|
+
# Create a new ApplicationAuthentication
|
61
|
+
# Creates a ApplicationAuthentication object
|
62
|
+
# @param application_authentication ApplicationAuthentication attributes to create
|
63
|
+
# @param [Hash] opts the optional parameters
|
64
|
+
# @return [ApplicationAuthentication]
|
65
|
+
describe 'create_application_authentication test' 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
|
+
|
59
71
|
# unit tests for create_authentication
|
60
72
|
# Create a new Authentication
|
61
73
|
# Creates a Authentication object
|
@@ -92,25 +104,25 @@ describe 'DefaultApi' do
|
|
92
104
|
end
|
93
105
|
end
|
94
106
|
|
95
|
-
# unit tests for
|
96
|
-
#
|
97
|
-
#
|
98
|
-
# @param
|
107
|
+
# unit tests for delete_application
|
108
|
+
# Delete an existing Application
|
109
|
+
# Deletes a Application object
|
110
|
+
# @param id ID of the resource
|
99
111
|
# @param [Hash] opts the optional parameters
|
100
|
-
# @return [
|
101
|
-
describe '
|
112
|
+
# @return [nil]
|
113
|
+
describe 'delete_application test' do
|
102
114
|
it 'should work' do
|
103
115
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
116
|
end
|
105
117
|
end
|
106
118
|
|
107
|
-
# unit tests for
|
108
|
-
# Delete an existing
|
109
|
-
# Deletes a
|
119
|
+
# unit tests for delete_application_authentication
|
120
|
+
# Delete an existing ApplicationAuthentication
|
121
|
+
# Deletes a ApplicationAuthentication object
|
110
122
|
# @param id ID of the resource
|
111
123
|
# @param [Hash] opts the optional parameters
|
112
124
|
# @return [nil]
|
113
|
-
describe '
|
125
|
+
describe 'delete_application_authentication test' do
|
114
126
|
it 'should work' do
|
115
127
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
116
128
|
end
|
@@ -162,6 +174,37 @@ describe 'DefaultApi' do
|
|
162
174
|
end
|
163
175
|
end
|
164
176
|
|
177
|
+
# unit tests for list_all_application_authentications
|
178
|
+
# List ApplicationAuthentications
|
179
|
+
# Returns an array of ApplicationAuthentication objects
|
180
|
+
# @param [Hash] opts the optional parameters
|
181
|
+
# @option opts [Integer] :limit The numbers of items to return per page.
|
182
|
+
# @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
|
183
|
+
# @option opts [Object] :filter Filter for querying collections.
|
184
|
+
# @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
|
185
|
+
# @return [ApplicationAuthenticationsCollection]
|
186
|
+
describe 'list_all_application_authentications test' do
|
187
|
+
it 'should work' do
|
188
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
189
|
+
end
|
190
|
+
end
|
191
|
+
|
192
|
+
# unit tests for list_application_authentications
|
193
|
+
# List Authentications for Application
|
194
|
+
# Returns an array of Authentication objects
|
195
|
+
# @param id ID of the resource
|
196
|
+
# @param [Hash] opts the optional parameters
|
197
|
+
# @option opts [Integer] :limit The numbers of items to return per page.
|
198
|
+
# @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
|
199
|
+
# @option opts [Object] :filter Filter for querying collections.
|
200
|
+
# @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
|
201
|
+
# @return [AuthenticationsCollection]
|
202
|
+
describe 'list_application_authentications test' do
|
203
|
+
it 'should work' do
|
204
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
165
208
|
# unit tests for list_application_type_sources
|
166
209
|
# List Sources for ApplicationType
|
167
210
|
# Returns an array of Source objects
|
@@ -170,7 +213,7 @@ describe 'DefaultApi' do
|
|
170
213
|
# @option opts [Integer] :limit The numbers of items to return per page.
|
171
214
|
# @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
|
172
215
|
# @option opts [Object] :filter Filter for querying collections.
|
173
|
-
# @option opts [
|
216
|
+
# @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
|
174
217
|
# @return [SourcesCollection]
|
175
218
|
describe 'list_application_type_sources test' do
|
176
219
|
it 'should work' do
|
@@ -185,7 +228,7 @@ describe 'DefaultApi' do
|
|
185
228
|
# @option opts [Integer] :limit The numbers of items to return per page.
|
186
229
|
# @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
|
187
230
|
# @option opts [Object] :filter Filter for querying collections.
|
188
|
-
# @option opts [
|
231
|
+
# @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
|
189
232
|
# @return [ApplicationTypesCollection]
|
190
233
|
describe 'list_application_types test' do
|
191
234
|
it 'should work' do
|
@@ -200,7 +243,7 @@ describe 'DefaultApi' do
|
|
200
243
|
# @option opts [Integer] :limit The numbers of items to return per page.
|
201
244
|
# @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
|
202
245
|
# @option opts [Object] :filter Filter for querying collections.
|
203
|
-
# @option opts [
|
246
|
+
# @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
|
204
247
|
# @return [ApplicationsCollection]
|
205
248
|
describe 'list_applications test' do
|
206
249
|
it 'should work' do
|
@@ -215,7 +258,7 @@ describe 'DefaultApi' do
|
|
215
258
|
# @option opts [Integer] :limit The numbers of items to return per page.
|
216
259
|
# @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
|
217
260
|
# @option opts [Object] :filter Filter for querying collections.
|
218
|
-
# @option opts [
|
261
|
+
# @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
|
219
262
|
# @return [AuthenticationsCollection]
|
220
263
|
describe 'list_authentications test' do
|
221
264
|
it 'should work' do
|
@@ -231,7 +274,7 @@ describe 'DefaultApi' do
|
|
231
274
|
# @option opts [Integer] :limit The numbers of items to return per page.
|
232
275
|
# @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
|
233
276
|
# @option opts [Object] :filter Filter for querying collections.
|
234
|
-
# @option opts [
|
277
|
+
# @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
|
235
278
|
# @return [AuthenticationsCollection]
|
236
279
|
describe 'list_endpoint_authentications test' do
|
237
280
|
it 'should work' do
|
@@ -246,7 +289,7 @@ describe 'DefaultApi' do
|
|
246
289
|
# @option opts [Integer] :limit The numbers of items to return per page.
|
247
290
|
# @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
|
248
291
|
# @option opts [Object] :filter Filter for querying collections.
|
249
|
-
# @option opts [
|
292
|
+
# @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
|
250
293
|
# @return [EndpointsCollection]
|
251
294
|
describe 'list_endpoints test' do
|
252
295
|
it 'should work' do
|
@@ -262,7 +305,7 @@ describe 'DefaultApi' do
|
|
262
305
|
# @option opts [Integer] :limit The numbers of items to return per page.
|
263
306
|
# @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
|
264
307
|
# @option opts [Object] :filter Filter for querying collections.
|
265
|
-
# @option opts [
|
308
|
+
# @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
|
266
309
|
# @return [ApplicationTypesCollection]
|
267
310
|
describe 'list_source_application_types test' do
|
268
311
|
it 'should work' do
|
@@ -278,7 +321,7 @@ describe 'DefaultApi' do
|
|
278
321
|
# @option opts [Integer] :limit The numbers of items to return per page.
|
279
322
|
# @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
|
280
323
|
# @option opts [Object] :filter Filter for querying collections.
|
281
|
-
# @option opts [
|
324
|
+
# @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
|
282
325
|
# @return [ApplicationsCollection]
|
283
326
|
describe 'list_source_applications test' do
|
284
327
|
it 'should work' do
|
@@ -294,7 +337,7 @@ describe 'DefaultApi' do
|
|
294
337
|
# @option opts [Integer] :limit The numbers of items to return per page.
|
295
338
|
# @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
|
296
339
|
# @option opts [Object] :filter Filter for querying collections.
|
297
|
-
# @option opts [
|
340
|
+
# @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
|
298
341
|
# @return [EndpointsCollection]
|
299
342
|
describe 'list_source_endpoints test' do
|
300
343
|
it 'should work' do
|
@@ -310,7 +353,7 @@ describe 'DefaultApi' do
|
|
310
353
|
# @option opts [Integer] :limit The numbers of items to return per page.
|
311
354
|
# @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
|
312
355
|
# @option opts [Object] :filter Filter for querying collections.
|
313
|
-
# @option opts [
|
356
|
+
# @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
|
314
357
|
# @return [SourcesCollection]
|
315
358
|
describe 'list_source_type_sources test' do
|
316
359
|
it 'should work' do
|
@@ -325,7 +368,7 @@ describe 'DefaultApi' do
|
|
325
368
|
# @option opts [Integer] :limit The numbers of items to return per page.
|
326
369
|
# @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
|
327
370
|
# @option opts [Object] :filter Filter for querying collections.
|
328
|
-
# @option opts [
|
371
|
+
# @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
|
329
372
|
# @return [SourceTypesCollection]
|
330
373
|
describe 'list_source_types test' do
|
331
374
|
it 'should work' do
|
@@ -340,7 +383,7 @@ describe 'DefaultApi' do
|
|
340
383
|
# @option opts [Integer] :limit The numbers of items to return per page.
|
341
384
|
# @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
|
342
385
|
# @option opts [Object] :filter Filter for querying collections.
|
343
|
-
# @option opts [
|
386
|
+
# @option opts [Object] :sort_by The list of attribute and order to sort the result set by.
|
344
387
|
# @return [SourcesCollection]
|
345
388
|
describe 'list_sources test' do
|
346
389
|
it 'should work' do
|
@@ -372,6 +415,18 @@ describe 'DefaultApi' do
|
|
372
415
|
end
|
373
416
|
end
|
374
417
|
|
418
|
+
# unit tests for show_application_authentication
|
419
|
+
# Show an existing ApplicationAuthentication
|
420
|
+
# Returns a ApplicationAuthentication object
|
421
|
+
# @param id ID of the resource
|
422
|
+
# @param [Hash] opts the optional parameters
|
423
|
+
# @return [ApplicationAuthentication]
|
424
|
+
describe 'show_application_authentication test' do
|
425
|
+
it 'should work' do
|
426
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
427
|
+
end
|
428
|
+
end
|
429
|
+
|
375
430
|
# unit tests for show_application_type
|
376
431
|
# Show an existing ApplicationType
|
377
432
|
# Returns a ApplicationType object
|
@@ -445,6 +500,19 @@ describe 'DefaultApi' do
|
|
445
500
|
end
|
446
501
|
end
|
447
502
|
|
503
|
+
# unit tests for update_application_authentication
|
504
|
+
# Update an existing ApplicationAuthentication
|
505
|
+
# Updates a ApplicationAuthentication object
|
506
|
+
# @param id ID of the resource
|
507
|
+
# @param application_authentication ApplicationAuthentication attributes to update
|
508
|
+
# @param [Hash] opts the optional parameters
|
509
|
+
# @return [nil]
|
510
|
+
describe 'update_application_authentication test' do
|
511
|
+
it 'should work' do
|
512
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
513
|
+
end
|
514
|
+
end
|
515
|
+
|
448
516
|
# unit tests for update_authentication
|
449
517
|
# Update an existing Authentication
|
450
518
|
# Updates a Authentication object
|
data/spec/api_client_spec.rb
CHANGED
data/spec/configuration_spec.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Sources
|
5
5
|
|
6
|
-
The version of the OpenAPI document:
|
6
|
+
The version of the OpenAPI document: 3.0.0
|
7
7
|
Contact: support@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.1
|
@@ -18,7 +18,7 @@ describe SourcesApiClient::Configuration do
|
|
18
18
|
before(:each) do
|
19
19
|
# uncomment below to setup host and base_path
|
20
20
|
# require 'URI'
|
21
|
-
# uri = URI.parse("https://cloud.redhat.com//api/sources/
|
21
|
+
# uri = URI.parse("https://cloud.redhat.com//api/sources/v3.0")
|
22
22
|
# SourcesApiClient.configure do |c|
|
23
23
|
# c.host = uri.host
|
24
24
|
# c.base_path = uri.path
|
@@ -28,14 +28,14 @@ describe SourcesApiClient::Configuration do
|
|
28
28
|
describe '#base_url' do
|
29
29
|
it 'should have the default value' do
|
30
30
|
# uncomment below to test default value of the base path
|
31
|
-
# expect(config.base_url).to eq("https://cloud.redhat.com//api/sources/
|
31
|
+
# expect(config.base_url).to eq("https://cloud.redhat.com//api/sources/v3.0")
|
32
32
|
end
|
33
33
|
|
34
34
|
it 'should remove trailing slashes' do
|
35
35
|
[nil, '', '/', '//'].each do |base_path|
|
36
36
|
config.base_path = base_path
|
37
37
|
# uncomment below to test trailing slashes
|
38
|
-
# expect(config.base_url).to eq("https://cloud.redhat.com//api/sources/
|
38
|
+
# expect(config.base_url).to eq("https://cloud.redhat.com//api/sources/v3.0")
|
39
39
|
end
|
40
40
|
end
|
41
41
|
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
=begin
|
2
|
+
#Sources
|
3
|
+
|
4
|
+
#Sources
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 3.0.0
|
7
|
+
Contact: support@redhat.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.2.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for SourcesApiClient::ApplicationAuthentication
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'ApplicationAuthentication' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SourcesApiClient::ApplicationAuthentication.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of ApplicationAuthentication' do
|
31
|
+
it 'should create an instance of ApplicationAuthentication' do
|
32
|
+
expect(@instance).to be_instance_of(SourcesApiClient::ApplicationAuthentication)
|
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 "authentication_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 "created_at"' 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 "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
|
+
describe 'test attribute "updated_at"' 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
|
+
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Sources
|
5
5
|
|
6
|
-
The version of the OpenAPI document:
|
6
|
+
The version of the OpenAPI document: 3.0.0
|
7
7
|
Contact: support@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.1
|
@@ -14,37 +14,37 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for SourcesApiClient::
|
17
|
+
# Unit tests for SourcesApiClient::ApplicationAuthenticationsCollection
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe '
|
20
|
+
describe 'ApplicationAuthenticationsCollection' do
|
21
21
|
before do
|
22
22
|
# run before each test
|
23
|
-
@instance = SourcesApiClient::
|
23
|
+
@instance = SourcesApiClient::ApplicationAuthenticationsCollection.new
|
24
24
|
end
|
25
25
|
|
26
26
|
after do
|
27
27
|
# run after each test
|
28
28
|
end
|
29
29
|
|
30
|
-
describe 'test an instance of
|
31
|
-
it 'should create an instance of
|
32
|
-
expect(@instance).to be_instance_of(SourcesApiClient::
|
30
|
+
describe 'test an instance of ApplicationAuthenticationsCollection' do
|
31
|
+
it 'should create an instance of ApplicationAuthenticationsCollection' do
|
32
|
+
expect(@instance).to be_instance_of(SourcesApiClient::ApplicationAuthenticationsCollection)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "meta"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "links"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "data"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|