pulp_container_client 2.16.3 → 2.17.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.
@@ -18,38 +18,38 @@ module PulpContainerClient
18
18
  # A reference to an associated signing service.
19
19
  attr_accessor :manifest_signing_service
20
20
 
21
- attr_accessor :versions_href
21
+ attr_accessor :latest_version_href
22
+
23
+ # Timestamp of creation.
24
+ attr_accessor :pulp_created
25
+
26
+ attr_accessor :pulp_labels
22
27
 
23
28
  # An optional description.
24
29
  attr_accessor :description
25
30
 
26
- attr_accessor :latest_version_href
27
-
28
- attr_accessor :pulp_href
31
+ attr_accessor :versions_href
29
32
 
30
33
  # Retain X versions of the repository. Default is null which retains all versions.
31
34
  attr_accessor :retain_repo_versions
32
35
 
33
- # Timestamp of creation.
34
- attr_accessor :pulp_created
36
+ attr_accessor :pulp_href
35
37
 
36
38
  # A unique name for this repository.
37
39
  attr_accessor :name
38
40
 
39
- attr_accessor :pulp_labels
40
-
41
41
  # Attribute mapping from ruby-style variable name to JSON key.
42
42
  def self.attribute_map
43
43
  {
44
44
  :'manifest_signing_service' => :'manifest_signing_service',
45
- :'versions_href' => :'versions_href',
46
- :'description' => :'description',
47
45
  :'latest_version_href' => :'latest_version_href',
48
- :'pulp_href' => :'pulp_href',
49
- :'retain_repo_versions' => :'retain_repo_versions',
50
46
  :'pulp_created' => :'pulp_created',
51
- :'name' => :'name',
52
- :'pulp_labels' => :'pulp_labels'
47
+ :'pulp_labels' => :'pulp_labels',
48
+ :'description' => :'description',
49
+ :'versions_href' => :'versions_href',
50
+ :'retain_repo_versions' => :'retain_repo_versions',
51
+ :'pulp_href' => :'pulp_href',
52
+ :'name' => :'name'
53
53
  }
54
54
  end
55
55
 
@@ -57,14 +57,14 @@ module PulpContainerClient
57
57
  def self.openapi_types
58
58
  {
59
59
  :'manifest_signing_service' => :'String',
60
- :'versions_href' => :'String',
61
- :'description' => :'String',
62
60
  :'latest_version_href' => :'String',
63
- :'pulp_href' => :'String',
64
- :'retain_repo_versions' => :'Integer',
65
61
  :'pulp_created' => :'DateTime',
66
- :'name' => :'String',
67
- :'pulp_labels' => :'Hash<String, String>'
62
+ :'pulp_labels' => :'Hash<String, String>',
63
+ :'description' => :'String',
64
+ :'versions_href' => :'String',
65
+ :'retain_repo_versions' => :'Integer',
66
+ :'pulp_href' => :'String',
67
+ :'name' => :'String'
68
68
  }
69
69
  end
70
70
 
@@ -96,39 +96,39 @@ module PulpContainerClient
96
96
  self.manifest_signing_service = attributes[:'manifest_signing_service']
97
97
  end
98
98
 
99
- if attributes.key?(:'versions_href')
100
- self.versions_href = attributes[:'versions_href']
99
+ if attributes.key?(:'latest_version_href')
100
+ self.latest_version_href = attributes[:'latest_version_href']
101
101
  end
102
102
 
103
- if attributes.key?(:'description')
104
- self.description = attributes[:'description']
103
+ if attributes.key?(:'pulp_created')
104
+ self.pulp_created = attributes[:'pulp_created']
105
105
  end
106
106
 
107
- if attributes.key?(:'latest_version_href')
108
- self.latest_version_href = attributes[:'latest_version_href']
107
+ if attributes.key?(:'pulp_labels')
108
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
109
+ self.pulp_labels = value
110
+ end
109
111
  end
110
112
 
111
- if attributes.key?(:'pulp_href')
112
- self.pulp_href = attributes[:'pulp_href']
113
+ if attributes.key?(:'description')
114
+ self.description = attributes[:'description']
115
+ end
116
+
117
+ if attributes.key?(:'versions_href')
118
+ self.versions_href = attributes[:'versions_href']
113
119
  end
114
120
 
115
121
  if attributes.key?(:'retain_repo_versions')
116
122
  self.retain_repo_versions = attributes[:'retain_repo_versions']
117
123
  end
118
124
 
119
- if attributes.key?(:'pulp_created')
120
- self.pulp_created = attributes[:'pulp_created']
125
+ if attributes.key?(:'pulp_href')
126
+ self.pulp_href = attributes[:'pulp_href']
121
127
  end
122
128
 
123
129
  if attributes.key?(:'name')
124
130
  self.name = attributes[:'name']
125
131
  end
126
-
127
- if attributes.key?(:'pulp_labels')
128
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
129
- self.pulp_labels = value
130
- end
131
- end
132
132
  end
133
133
 
134
134
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -170,14 +170,14 @@ module PulpContainerClient
170
170
  return true if self.equal?(o)
171
171
  self.class == o.class &&
172
172
  manifest_signing_service == o.manifest_signing_service &&
173
- versions_href == o.versions_href &&
174
- description == o.description &&
175
173
  latest_version_href == o.latest_version_href &&
176
- pulp_href == o.pulp_href &&
177
- retain_repo_versions == o.retain_repo_versions &&
178
174
  pulp_created == o.pulp_created &&
179
- name == o.name &&
180
- pulp_labels == o.pulp_labels
175
+ pulp_labels == o.pulp_labels &&
176
+ description == o.description &&
177
+ versions_href == o.versions_href &&
178
+ retain_repo_versions == o.retain_repo_versions &&
179
+ pulp_href == o.pulp_href &&
180
+ name == o.name
181
181
  end
182
182
 
183
183
  # @see the `==` method
@@ -189,7 +189,7 @@ module PulpContainerClient
189
189
  # Calculates hash code according to all attributes.
190
190
  # @return [Integer] Hash code
191
191
  def hash
192
- [manifest_signing_service, versions_href, description, latest_version_href, pulp_href, retain_repo_versions, pulp_created, name, pulp_labels].hash
192
+ [manifest_signing_service, latest_version_href, pulp_created, pulp_labels, description, versions_href, retain_repo_versions, pulp_href, name].hash
193
193
  end
194
194
 
195
195
  # Builds the object from hash
@@ -15,23 +15,23 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for ContainerDistribution.
17
17
  class PatchedcontainerContainerDistribution
18
- # An optional content-guard. If none is specified, a default one will be used.
19
- attr_accessor :content_guard
18
+ # The latest RepositoryVersion for this Repository will be served.
19
+ attr_accessor :repository
20
20
 
21
- # Whether this distribution should be shown in the content app.
22
- attr_accessor :hidden
21
+ attr_accessor :pulp_labels
23
22
 
24
23
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
25
24
  attr_accessor :base_path
26
25
 
27
- # The latest RepositoryVersion for this Repository will be served.
28
- attr_accessor :repository
26
+ # Whether this distribution should be shown in the content app.
27
+ attr_accessor :hidden
28
+
29
+ # An optional content-guard. If none is specified, a default one will be used.
30
+ attr_accessor :content_guard
29
31
 
30
32
  # A unique name. Ex, `rawhide` and `stable`.
31
33
  attr_accessor :name
32
34
 
33
- attr_accessor :pulp_labels
34
-
35
35
  # RepositoryVersion to be served
36
36
  attr_accessor :repository_version
37
37
 
@@ -44,12 +44,12 @@ module PulpContainerClient
44
44
  # Attribute mapping from ruby-style variable name to JSON key.
45
45
  def self.attribute_map
46
46
  {
47
- :'content_guard' => :'content_guard',
48
- :'hidden' => :'hidden',
49
- :'base_path' => :'base_path',
50
47
  :'repository' => :'repository',
51
- :'name' => :'name',
52
48
  :'pulp_labels' => :'pulp_labels',
49
+ :'base_path' => :'base_path',
50
+ :'hidden' => :'hidden',
51
+ :'content_guard' => :'content_guard',
52
+ :'name' => :'name',
53
53
  :'repository_version' => :'repository_version',
54
54
  :'private' => :'private',
55
55
  :'description' => :'description'
@@ -59,12 +59,12 @@ module PulpContainerClient
59
59
  # Attribute type mapping.
60
60
  def self.openapi_types
61
61
  {
62
- :'content_guard' => :'String',
63
- :'hidden' => :'Boolean',
64
- :'base_path' => :'String',
65
62
  :'repository' => :'String',
66
- :'name' => :'String',
67
63
  :'pulp_labels' => :'Hash<String, String>',
64
+ :'base_path' => :'String',
65
+ :'hidden' => :'Boolean',
66
+ :'content_guard' => :'String',
67
+ :'name' => :'String',
68
68
  :'repository_version' => :'String',
69
69
  :'private' => :'Boolean',
70
70
  :'description' => :'String'
@@ -95,32 +95,32 @@ module PulpContainerClient
95
95
  h[k.to_sym] = v
96
96
  }
97
97
 
98
- if attributes.key?(:'content_guard')
99
- self.content_guard = attributes[:'content_guard']
98
+ if attributes.key?(:'repository')
99
+ self.repository = attributes[:'repository']
100
100
  end
101
101
 
102
- if attributes.key?(:'hidden')
103
- self.hidden = attributes[:'hidden']
104
- else
105
- self.hidden = false
102
+ if attributes.key?(:'pulp_labels')
103
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
104
+ self.pulp_labels = value
105
+ end
106
106
  end
107
107
 
108
108
  if attributes.key?(:'base_path')
109
109
  self.base_path = attributes[:'base_path']
110
110
  end
111
111
 
112
- if attributes.key?(:'repository')
113
- self.repository = attributes[:'repository']
112
+ if attributes.key?(:'hidden')
113
+ self.hidden = attributes[:'hidden']
114
+ else
115
+ self.hidden = false
114
116
  end
115
117
 
116
- if attributes.key?(:'name')
117
- self.name = attributes[:'name']
118
+ if attributes.key?(:'content_guard')
119
+ self.content_guard = attributes[:'content_guard']
118
120
  end
119
121
 
120
- if attributes.key?(:'pulp_labels')
121
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
122
- self.pulp_labels = value
123
- end
122
+ if attributes.key?(:'name')
123
+ self.name = attributes[:'name']
124
124
  end
125
125
 
126
126
  if attributes.key?(:'repository_version')
@@ -199,12 +199,12 @@ module PulpContainerClient
199
199
  def ==(o)
200
200
  return true if self.equal?(o)
201
201
  self.class == o.class &&
202
- content_guard == o.content_guard &&
203
- hidden == o.hidden &&
204
- base_path == o.base_path &&
205
202
  repository == o.repository &&
206
- name == o.name &&
207
203
  pulp_labels == o.pulp_labels &&
204
+ base_path == o.base_path &&
205
+ hidden == o.hidden &&
206
+ content_guard == o.content_guard &&
207
+ name == o.name &&
208
208
  repository_version == o.repository_version &&
209
209
  private == o.private &&
210
210
  description == o.description
@@ -219,7 +219,7 @@ module PulpContainerClient
219
219
  # Calculates hash code according to all attributes.
220
220
  # @return [Integer] Hash code
221
221
  def hash
222
- [content_guard, hidden, base_path, repository, name, pulp_labels, repository_version, private, description].hash
222
+ [repository, pulp_labels, base_path, hidden, content_guard, name, repository_version, private, description].hash
223
223
  end
224
224
 
225
225
  # Builds the object from hash
@@ -18,6 +18,8 @@ module PulpContainerClient
18
18
  # A reference to an associated signing service.
19
19
  attr_accessor :manifest_signing_service
20
20
 
21
+ attr_accessor :pulp_labels
22
+
21
23
  # An optional description.
22
24
  attr_accessor :description
23
25
 
@@ -27,16 +29,14 @@ module PulpContainerClient
27
29
  # A unique name for this repository.
28
30
  attr_accessor :name
29
31
 
30
- attr_accessor :pulp_labels
31
-
32
32
  # Attribute mapping from ruby-style variable name to JSON key.
33
33
  def self.attribute_map
34
34
  {
35
35
  :'manifest_signing_service' => :'manifest_signing_service',
36
+ :'pulp_labels' => :'pulp_labels',
36
37
  :'description' => :'description',
37
38
  :'retain_repo_versions' => :'retain_repo_versions',
38
- :'name' => :'name',
39
- :'pulp_labels' => :'pulp_labels'
39
+ :'name' => :'name'
40
40
  }
41
41
  end
42
42
 
@@ -44,10 +44,10 @@ module PulpContainerClient
44
44
  def self.openapi_types
45
45
  {
46
46
  :'manifest_signing_service' => :'String',
47
+ :'pulp_labels' => :'Hash<String, String>',
47
48
  :'description' => :'String',
48
49
  :'retain_repo_versions' => :'Integer',
49
- :'name' => :'String',
50
- :'pulp_labels' => :'Hash<String, String>'
50
+ :'name' => :'String'
51
51
  }
52
52
  end
53
53
 
@@ -79,6 +79,12 @@ module PulpContainerClient
79
79
  self.manifest_signing_service = attributes[:'manifest_signing_service']
80
80
  end
81
81
 
82
+ if attributes.key?(:'pulp_labels')
83
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
84
+ self.pulp_labels = value
85
+ end
86
+ end
87
+
82
88
  if attributes.key?(:'description')
83
89
  self.description = attributes[:'description']
84
90
  end
@@ -90,12 +96,6 @@ module PulpContainerClient
90
96
  if attributes.key?(:'name')
91
97
  self.name = attributes[:'name']
92
98
  end
93
-
94
- if attributes.key?(:'pulp_labels')
95
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
96
- self.pulp_labels = value
97
- end
98
- end
99
99
  end
100
100
 
101
101
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -162,10 +162,10 @@ module PulpContainerClient
162
162
  return true if self.equal?(o)
163
163
  self.class == o.class &&
164
164
  manifest_signing_service == o.manifest_signing_service &&
165
+ pulp_labels == o.pulp_labels &&
165
166
  description == o.description &&
166
167
  retain_repo_versions == o.retain_repo_versions &&
167
- name == o.name &&
168
- pulp_labels == o.pulp_labels
168
+ name == o.name
169
169
  end
170
170
 
171
171
  # @see the `==` method
@@ -177,7 +177,7 @@ module PulpContainerClient
177
177
  # Calculates hash code according to all attributes.
178
178
  # @return [Integer] Hash code
179
179
  def hash
180
- [manifest_signing_service, description, retain_repo_versions, name, pulp_labels].hash
180
+ [manifest_signing_service, pulp_labels, description, retain_repo_versions, name].hash
181
181
  end
182
182
 
183
183
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.16.3'
14
+ VERSION = '2.17.0'
15
15
  end
@@ -32,49 +32,49 @@ describe 'ContainerContainerDistributionResponse' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistributionResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "content_guard"' do
35
+ describe 'test attribute "pulp_created"' 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 "pulp_href"' do
41
+ describe 'test attribute "repository"' 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 "hidden"' do
47
+ describe 'test attribute "pulp_labels"' 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
51
51
  end
52
52
 
53
- describe 'test attribute "pulp_created"' do
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
57
57
  end
58
58
 
59
- describe 'test attribute "base_path"' do
59
+ describe 'test attribute "hidden"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "repository"' do
65
+ describe 'test attribute "pulp_href"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "name"' do
71
+ describe 'test attribute "content_guard"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "pulp_labels"' do
77
+ describe 'test attribute "name"' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
80
  end
@@ -32,13 +32,13 @@ describe 'ContainerContainerDistribution' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistribution)
33
33
  end
34
34
  end
35
- describe 'test attribute "content_guard"' do
35
+ describe 'test attribute "repository"' 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 "hidden"' do
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,19 +50,19 @@ describe 'ContainerContainerDistribution' do
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "repository"' do
53
+ describe 'test attribute "hidden"' 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
57
57
  end
58
58
 
59
- describe 'test attribute "name"' do
59
+ describe 'test attribute "content_guard"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "pulp_labels"' do
65
+ describe 'test attribute "name"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
@@ -38,49 +38,49 @@ describe 'ContainerContainerPushRepositoryResponse' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "versions_href"' do
41
+ describe 'test attribute "latest_version_href"' 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 "description"' do
47
+ describe 'test attribute "pulp_created"' 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
51
51
  end
52
52
 
53
- describe 'test attribute "latest_version_href"' do
53
+ describe 'test attribute "pulp_labels"' 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
57
57
  end
58
58
 
59
- describe 'test attribute "pulp_href"' do
59
+ describe 'test attribute "description"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "retain_repo_versions"' do
65
+ describe 'test attribute "versions_href"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "pulp_created"' do
71
+ describe 'test attribute "retain_repo_versions"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "name"' do
77
+ describe 'test attribute "pulp_href"' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
80
  end
81
81
  end
82
82
 
83
- describe 'test attribute "pulp_labels"' do
83
+ describe 'test attribute "name"' do
84
84
  it 'should work' do
85
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
86
  end
@@ -38,25 +38,25 @@ describe 'ContainerContainerPushRepository' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "description"' do
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
45
45
  end
46
46
 
47
- describe 'test attribute "retain_repo_versions"' do
47
+ describe 'test attribute "description"' 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
51
51
  end
52
52
 
53
- describe 'test attribute "name"' do
53
+ describe 'test attribute "retain_repo_versions"' 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
57
57
  end
58
58
 
59
- describe 'test attribute "pulp_labels"' do
59
+ describe 'test attribute "name"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
@@ -32,13 +32,13 @@ describe 'PatchedcontainerContainerDistribution' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerDistribution)
33
33
  end
34
34
  end
35
- describe 'test attribute "content_guard"' do
35
+ describe 'test attribute "repository"' 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 "hidden"' do
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,19 +50,19 @@ describe 'PatchedcontainerContainerDistribution' do
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "repository"' do
53
+ describe 'test attribute "hidden"' 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
57
57
  end
58
58
 
59
- describe 'test attribute "name"' do
59
+ describe 'test attribute "content_guard"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "pulp_labels"' do
65
+ describe 'test attribute "name"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
@@ -38,25 +38,25 @@ describe 'PatchedcontainerContainerPushRepository' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "description"' do
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
45
45
  end
46
46
 
47
- describe 'test attribute "retain_repo_versions"' do
47
+ describe 'test attribute "description"' 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
51
51
  end
52
52
 
53
- describe 'test attribute "name"' do
53
+ describe 'test attribute "retain_repo_versions"' 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
57
57
  end
58
58
 
59
- describe 'test attribute "pulp_labels"' do
59
+ describe 'test attribute "name"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end