pulp_container_client 2.3.0.dev01611717997 → 2.3.0.dev01612322499
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.
Potentially problematic release.
This version of pulp_container_client might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +10 -10
- data/docs/ContainerContainerDistribution.md +5 -3
- data/docs/ContainerContainerDistributionResponse.md +8 -6
- data/docs/ContainerContainerPushRepositoryResponse.md +2 -0
- data/docs/ContainerContainerRemote.md +4 -0
- data/docs/ContainerContainerRemoteResponse.md +4 -0
- data/docs/ContainerContainerRepository.md +3 -1
- data/docs/ContainerContainerRepositoryResponse.md +2 -0
- data/docs/{ContentguardsContentRedirectApi.md → ContentGuardsContentRedirectApi.md} +19 -19
- data/docs/DistributionsContainerApi.md +2 -0
- data/docs/PatchedcontainerContainerDistribution.md +5 -3
- data/docs/PatchedcontainerContainerRemote.md +4 -0
- data/docs/PatchedcontainerContainerRepository.md +3 -1
- data/docs/RemotesContainerApi.md +2 -0
- data/docs/RepositoriesContainerApi.md +2 -0
- data/docs/RepositoriesContainerPushApi.md +2 -0
- data/lib/pulp_container_client.rb +1 -1
- data/lib/pulp_container_client/api/{contentguards_content_redirect_api.rb → content_guards_content_redirect_api.rb} +22 -22
- data/lib/pulp_container_client/api/distributions_container_api.rb +3 -0
- data/lib/pulp_container_client/api/remotes_container_api.rb +3 -0
- data/lib/pulp_container_client/api/repositories_container_api.rb +3 -0
- data/lib/pulp_container_client/api/repositories_container_push_api.rb +3 -0
- data/lib/pulp_container_client/models/container_container_distribution.rb +24 -15
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +30 -21
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +10 -1
- data/lib/pulp_container_client/models/container_container_remote.rb +21 -1
- data/lib/pulp_container_client/models/container_container_remote_response.rb +21 -1
- data/lib/pulp_container_client/models/container_container_repository.rb +10 -1
- data/lib/pulp_container_client/models/container_container_repository_response.rb +10 -1
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +24 -15
- data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +21 -1
- data/lib/pulp_container_client/models/patchedcontainer_container_repository.rb +10 -1
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/api/{contentguards_content_redirect_api_spec.rb → content_guards_content_redirect_api_spec.rb} +6 -6
- data/spec/api/distributions_container_api_spec.rb +1 -0
- data/spec/api/remotes_container_api_spec.rb +1 -0
- data/spec/api/repositories_container_api_spec.rb +1 -0
- data/spec/api/repositories_container_push_api_spec.rb +1 -0
- data/spec/models/container_container_distribution_response_spec.rb +9 -3
- data/spec/models/container_container_distribution_spec.rb +9 -3
- data/spec/models/container_container_push_repository_response_spec.rb +6 -0
- data/spec/models/container_container_remote_response_spec.rb +12 -0
- data/spec/models/container_container_remote_spec.rb +12 -0
- data/spec/models/container_container_repository_response_spec.rb +6 -0
- data/spec/models/container_container_repository_spec.rb +6 -0
- data/spec/models/patchedcontainer_container_distribution_spec.rb +9 -3
- data/spec/models/patchedcontainer_container_remote_spec.rb +12 -0
- data/spec/models/patchedcontainer_container_repository_spec.rb +6 -0
- metadata +43 -43
@@ -42,6 +42,8 @@ module PulpContainerClient
|
|
42
42
|
# The password to be used for authentication when syncing.
|
43
43
|
attr_accessor :password
|
44
44
|
|
45
|
+
attr_accessor :pulp_labels
|
46
|
+
|
45
47
|
# Total number of simultaneous connections.
|
46
48
|
attr_accessor :download_concurrency
|
47
49
|
|
@@ -60,6 +62,9 @@ module PulpContainerClient
|
|
60
62
|
# aiohttp.ClientTimeout.sock_read (q.v.) for download-connections.
|
61
63
|
attr_accessor :sock_read_timeout
|
62
64
|
|
65
|
+
# Limits total download rate in requests per second
|
66
|
+
attr_accessor :rate_limit
|
67
|
+
|
63
68
|
# Name of the upstream repository
|
64
69
|
attr_accessor :upstream_name
|
65
70
|
|
@@ -81,12 +86,14 @@ module PulpContainerClient
|
|
81
86
|
:'proxy_url' => :'proxy_url',
|
82
87
|
:'username' => :'username',
|
83
88
|
:'password' => :'password',
|
89
|
+
:'pulp_labels' => :'pulp_labels',
|
84
90
|
:'download_concurrency' => :'download_concurrency',
|
85
91
|
:'policy' => :'policy',
|
86
92
|
:'total_timeout' => :'total_timeout',
|
87
93
|
:'connect_timeout' => :'connect_timeout',
|
88
94
|
:'sock_connect_timeout' => :'sock_connect_timeout',
|
89
95
|
:'sock_read_timeout' => :'sock_read_timeout',
|
96
|
+
:'rate_limit' => :'rate_limit',
|
90
97
|
:'upstream_name' => :'upstream_name',
|
91
98
|
:'include_tags' => :'include_tags',
|
92
99
|
:'exclude_tags' => :'exclude_tags'
|
@@ -105,12 +112,14 @@ module PulpContainerClient
|
|
105
112
|
:'proxy_url' => :'String',
|
106
113
|
:'username' => :'String',
|
107
114
|
:'password' => :'String',
|
115
|
+
:'pulp_labels' => :'Object',
|
108
116
|
:'download_concurrency' => :'Integer',
|
109
117
|
:'policy' => :'PolicyEnum',
|
110
118
|
:'total_timeout' => :'Float',
|
111
119
|
:'connect_timeout' => :'Float',
|
112
120
|
:'sock_connect_timeout' => :'Float',
|
113
121
|
:'sock_read_timeout' => :'Float',
|
122
|
+
:'rate_limit' => :'Integer',
|
114
123
|
:'upstream_name' => :'String',
|
115
124
|
:'include_tags' => :'Array<String>',
|
116
125
|
:'exclude_tags' => :'Array<String>'
|
@@ -130,6 +139,7 @@ module PulpContainerClient
|
|
130
139
|
:'connect_timeout',
|
131
140
|
:'sock_connect_timeout',
|
132
141
|
:'sock_read_timeout',
|
142
|
+
:'rate_limit',
|
133
143
|
:'include_tags',
|
134
144
|
:'exclude_tags'
|
135
145
|
])
|
@@ -186,6 +196,10 @@ module PulpContainerClient
|
|
186
196
|
self.password = attributes[:'password']
|
187
197
|
end
|
188
198
|
|
199
|
+
if attributes.key?(:'pulp_labels')
|
200
|
+
self.pulp_labels = attributes[:'pulp_labels']
|
201
|
+
end
|
202
|
+
|
189
203
|
if attributes.key?(:'download_concurrency')
|
190
204
|
self.download_concurrency = attributes[:'download_concurrency']
|
191
205
|
end
|
@@ -210,6 +224,10 @@ module PulpContainerClient
|
|
210
224
|
self.sock_read_timeout = attributes[:'sock_read_timeout']
|
211
225
|
end
|
212
226
|
|
227
|
+
if attributes.key?(:'rate_limit')
|
228
|
+
self.rate_limit = attributes[:'rate_limit']
|
229
|
+
end
|
230
|
+
|
213
231
|
if attributes.key?(:'upstream_name')
|
214
232
|
self.upstream_name = attributes[:'upstream_name']
|
215
233
|
end
|
@@ -329,12 +347,14 @@ module PulpContainerClient
|
|
329
347
|
proxy_url == o.proxy_url &&
|
330
348
|
username == o.username &&
|
331
349
|
password == o.password &&
|
350
|
+
pulp_labels == o.pulp_labels &&
|
332
351
|
download_concurrency == o.download_concurrency &&
|
333
352
|
policy == o.policy &&
|
334
353
|
total_timeout == o.total_timeout &&
|
335
354
|
connect_timeout == o.connect_timeout &&
|
336
355
|
sock_connect_timeout == o.sock_connect_timeout &&
|
337
356
|
sock_read_timeout == o.sock_read_timeout &&
|
357
|
+
rate_limit == o.rate_limit &&
|
338
358
|
upstream_name == o.upstream_name &&
|
339
359
|
include_tags == o.include_tags &&
|
340
360
|
exclude_tags == o.exclude_tags
|
@@ -349,7 +369,7 @@ module PulpContainerClient
|
|
349
369
|
# Calculates hash code according to all attributes.
|
350
370
|
# @return [Integer] Hash code
|
351
371
|
def hash
|
352
|
-
[name, url, ca_cert, client_cert, client_key, tls_validation, proxy_url, username, password, download_concurrency, policy, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, upstream_name, include_tags, exclude_tags].hash
|
372
|
+
[name, url, ca_cert, client_cert, client_key, tls_validation, proxy_url, username, password, pulp_labels, download_concurrency, policy, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, rate_limit, upstream_name, include_tags, exclude_tags].hash
|
353
373
|
end
|
354
374
|
|
355
375
|
# Builds the object from hash
|
@@ -15,6 +15,8 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# Serializer for Container Repositories.
|
17
17
|
class PatchedcontainerContainerRepository
|
18
|
+
attr_accessor :pulp_labels
|
19
|
+
|
18
20
|
# A unique name for this repository.
|
19
21
|
attr_accessor :name
|
20
22
|
|
@@ -26,6 +28,7 @@ module PulpContainerClient
|
|
26
28
|
# Attribute mapping from ruby-style variable name to JSON key.
|
27
29
|
def self.attribute_map
|
28
30
|
{
|
31
|
+
:'pulp_labels' => :'pulp_labels',
|
29
32
|
:'name' => :'name',
|
30
33
|
:'description' => :'description',
|
31
34
|
:'remote' => :'remote'
|
@@ -35,6 +38,7 @@ module PulpContainerClient
|
|
35
38
|
# Attribute type mapping.
|
36
39
|
def self.openapi_types
|
37
40
|
{
|
41
|
+
:'pulp_labels' => :'Object',
|
38
42
|
:'name' => :'String',
|
39
43
|
:'description' => :'String',
|
40
44
|
:'remote' => :'String'
|
@@ -64,6 +68,10 @@ module PulpContainerClient
|
|
64
68
|
h[k.to_sym] = v
|
65
69
|
}
|
66
70
|
|
71
|
+
if attributes.key?(:'pulp_labels')
|
72
|
+
self.pulp_labels = attributes[:'pulp_labels']
|
73
|
+
end
|
74
|
+
|
67
75
|
if attributes.key?(:'name')
|
68
76
|
self.name = attributes[:'name']
|
69
77
|
end
|
@@ -95,6 +103,7 @@ module PulpContainerClient
|
|
95
103
|
def ==(o)
|
96
104
|
return true if self.equal?(o)
|
97
105
|
self.class == o.class &&
|
106
|
+
pulp_labels == o.pulp_labels &&
|
98
107
|
name == o.name &&
|
99
108
|
description == o.description &&
|
100
109
|
remote == o.remote
|
@@ -109,7 +118,7 @@ module PulpContainerClient
|
|
109
118
|
# Calculates hash code according to all attributes.
|
110
119
|
# @return [Integer] Hash code
|
111
120
|
def hash
|
112
|
-
[name, description, remote].hash
|
121
|
+
[pulp_labels, name, description, remote].hash
|
113
122
|
end
|
114
123
|
|
115
124
|
# Builds the object from hash
|
@@ -13,22 +13,22 @@ OpenAPI Generator version: 4.2.3
|
|
13
13
|
require 'spec_helper'
|
14
14
|
require 'json'
|
15
15
|
|
16
|
-
# Unit tests for PulpContainerClient::
|
16
|
+
# Unit tests for PulpContainerClient::ContentGuardsContentRedirectApi
|
17
17
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
18
18
|
# Please update as you see appropriate
|
19
|
-
describe '
|
19
|
+
describe 'ContentGuardsContentRedirectApi' do
|
20
20
|
before do
|
21
21
|
# run before each test
|
22
|
-
@api_instance = PulpContainerClient::
|
22
|
+
@api_instance = PulpContainerClient::ContentGuardsContentRedirectApi.new
|
23
23
|
end
|
24
24
|
|
25
25
|
after do
|
26
26
|
# run after each test
|
27
27
|
end
|
28
28
|
|
29
|
-
describe 'test an instance of
|
30
|
-
it 'should create an instance of
|
31
|
-
expect(@api_instance).to be_instance_of(PulpContainerClient::
|
29
|
+
describe 'test an instance of ContentGuardsContentRedirectApi' do
|
30
|
+
it 'should create an instance of ContentGuardsContentRedirectApi' do
|
31
|
+
expect(@api_instance).to be_instance_of(PulpContainerClient::ContentGuardsContentRedirectApi)
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
@@ -73,6 +73,7 @@ describe 'DistributionsContainerApi' do
|
|
73
73
|
# @option opts [String] :namespace__name namespace__name
|
74
74
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
75
75
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
76
|
+
# @option opts [String] :pulp_label_select pulp_label_select
|
76
77
|
# @option opts [String] :fields A list of fields to include in the response.
|
77
78
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
78
79
|
# @return [PaginatedcontainerContainerDistributionResponseList]
|
@@ -68,6 +68,7 @@ describe 'RemotesContainerApi' do
|
|
68
68
|
# @option opts [String] :name__startswith name__startswith
|
69
69
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
70
70
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
71
|
+
# @option opts [String] :pulp_label_select pulp_label_select
|
71
72
|
# @option opts [String] :pulp_last_updated pulp_last_updated
|
72
73
|
# @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
|
73
74
|
# @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
|
@@ -123,6 +123,7 @@ describe 'RepositoriesContainerApi' do
|
|
123
123
|
# @option opts [String] :name__startswith name__startswith
|
124
124
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
125
125
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
126
|
+
# @option opts [String] :pulp_label_select pulp_label_select
|
126
127
|
# @option opts [String] :fields A list of fields to include in the response.
|
127
128
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
128
129
|
# @return [PaginatedcontainerContainerRepositoryResponseList]
|
@@ -44,6 +44,7 @@ describe 'RepositoriesContainerPushApi' do
|
|
44
44
|
# @option opts [String] :name__startswith name__startswith
|
45
45
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
46
46
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
47
|
+
# @option opts [String] :pulp_label_select pulp_label_select
|
47
48
|
# @option opts [String] :fields A list of fields to include in the response.
|
48
49
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
49
50
|
# @return [PaginatedcontainerContainerPushRepositoryResponseList]
|
@@ -38,7 +38,7 @@ describe 'ContainerContainerDistributionResponse' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "pulp_labels"' 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
|
@@ -50,7 +50,7 @@ describe 'ContainerContainerDistributionResponse' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "base_path"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
@@ -62,13 +62,19 @@ describe 'ContainerContainerDistributionResponse' do
|
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
+
describe 'test attribute "pulp_created"' 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
|
+
|
65
71
|
describe 'test attribute "repository_version"' do
|
66
72
|
it 'should work' do
|
67
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
74
|
end
|
69
75
|
end
|
70
76
|
|
71
|
-
describe 'test attribute "
|
77
|
+
describe 'test attribute "pulp_href"' do
|
72
78
|
it 'should work' do
|
73
79
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
80
|
end
|
@@ -38,25 +38,31 @@ describe 'ContainerContainerDistribution' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
+
describe 'test attribute "pulp_labels"' 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
|
+
|
41
47
|
describe 'test attribute "name"' do
|
42
48
|
it 'should work' do
|
43
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
50
|
end
|
45
51
|
end
|
46
52
|
|
47
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "base_path"' do
|
48
54
|
it 'should work' do
|
49
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
56
|
end
|
51
57
|
end
|
52
58
|
|
53
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "content_guard"' do
|
54
60
|
it 'should work' do
|
55
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
62
|
end
|
57
63
|
end
|
58
64
|
|
59
|
-
describe 'test attribute "
|
65
|
+
describe 'test attribute "repository_version"' do
|
60
66
|
it 'should work' do
|
61
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
68
|
end
|
@@ -50,6 +50,12 @@ describe 'ContainerContainerPushRepositoryResponse' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
+
describe 'test attribute "pulp_labels"' 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
|
+
|
53
59
|
describe 'test attribute "latest_version_href"' do
|
54
60
|
it 'should work' do
|
55
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -98,6 +98,12 @@ describe 'ContainerContainerRemoteResponse' do
|
|
98
98
|
end
|
99
99
|
end
|
100
100
|
|
101
|
+
describe 'test attribute "pulp_labels"' 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
|
+
|
101
107
|
describe 'test attribute "pulp_last_updated"' do
|
102
108
|
it 'should work' do
|
103
109
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -140,6 +146,12 @@ describe 'ContainerContainerRemoteResponse' do
|
|
140
146
|
end
|
141
147
|
end
|
142
148
|
|
149
|
+
describe 'test attribute "rate_limit"' do
|
150
|
+
it 'should work' do
|
151
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
143
155
|
describe 'test attribute "upstream_name"' do
|
144
156
|
it 'should work' do
|
145
157
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -86,6 +86,12 @@ describe 'ContainerContainerRemote' do
|
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
89
|
+
describe 'test attribute "pulp_labels"' 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
|
+
|
89
95
|
describe 'test attribute "download_concurrency"' do
|
90
96
|
it 'should work' do
|
91
97
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -122,6 +128,12 @@ describe 'ContainerContainerRemote' do
|
|
122
128
|
end
|
123
129
|
end
|
124
130
|
|
131
|
+
describe 'test attribute "rate_limit"' do
|
132
|
+
it 'should work' do
|
133
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
125
137
|
describe 'test attribute "upstream_name"' do
|
126
138
|
it 'should work' do
|
127
139
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -50,6 +50,12 @@ describe 'ContainerContainerRepositoryResponse' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
+
describe 'test attribute "pulp_labels"' 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
|
+
|
53
59
|
describe 'test attribute "latest_version_href"' do
|
54
60
|
it 'should work' do
|
55
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -32,6 +32,12 @@ describe 'ContainerContainerRepository' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerRepository)
|
33
33
|
end
|
34
34
|
end
|
35
|
+
describe 'test attribute "pulp_labels"' 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
|
+
|
35
41
|
describe 'test attribute "name"' do
|
36
42
|
it 'should work' do
|
37
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -38,25 +38,31 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
+
describe 'test attribute "pulp_labels"' 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
|
+
|
41
47
|
describe 'test attribute "name"' do
|
42
48
|
it 'should work' do
|
43
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
50
|
end
|
45
51
|
end
|
46
52
|
|
47
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "base_path"' do
|
48
54
|
it 'should work' do
|
49
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
56
|
end
|
51
57
|
end
|
52
58
|
|
53
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "content_guard"' do
|
54
60
|
it 'should work' do
|
55
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
62
|
end
|
57
63
|
end
|
58
64
|
|
59
|
-
describe 'test attribute "
|
65
|
+
describe 'test attribute "repository_version"' do
|
60
66
|
it 'should work' do
|
61
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
68
|
end
|
@@ -86,6 +86,12 @@ describe 'PatchedcontainerContainerRemote' do
|
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
89
|
+
describe 'test attribute "pulp_labels"' 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
|
+
|
89
95
|
describe 'test attribute "download_concurrency"' do
|
90
96
|
it 'should work' do
|
91
97
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -122,6 +128,12 @@ describe 'PatchedcontainerContainerRemote' do
|
|
122
128
|
end
|
123
129
|
end
|
124
130
|
|
131
|
+
describe 'test attribute "rate_limit"' do
|
132
|
+
it 'should work' do
|
133
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
125
137
|
describe 'test attribute "upstream_name"' do
|
126
138
|
it 'should work' do
|
127
139
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|