pulp_container_client 2.10.10 → 2.10.11

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.
@@ -15,59 +15,59 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class ContainerContainerPushRepositoryResponse
18
- attr_accessor :latest_version_href
19
-
20
- # An optional description.
21
- attr_accessor :description
22
-
23
18
  attr_accessor :pulp_labels
24
19
 
25
- attr_accessor :pulp_href
20
+ attr_accessor :latest_version_href
26
21
 
27
22
  attr_accessor :versions_href
28
23
 
24
+ # Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future.
25
+ attr_accessor :retain_repo_versions
26
+
29
27
  # Timestamp of creation.
30
28
  attr_accessor :pulp_created
31
29
 
30
+ attr_accessor :pulp_href
31
+
32
32
  # A unique name for this repository.
33
33
  attr_accessor :name
34
34
 
35
- # Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future.
36
- attr_accessor :retain_repo_versions
35
+ # An optional description.
36
+ attr_accessor :description
37
37
 
38
38
  # Attribute mapping from ruby-style variable name to JSON key.
39
39
  def self.attribute_map
40
40
  {
41
- :'latest_version_href' => :'latest_version_href',
42
- :'description' => :'description',
43
41
  :'pulp_labels' => :'pulp_labels',
44
- :'pulp_href' => :'pulp_href',
42
+ :'latest_version_href' => :'latest_version_href',
45
43
  :'versions_href' => :'versions_href',
44
+ :'retain_repo_versions' => :'retain_repo_versions',
46
45
  :'pulp_created' => :'pulp_created',
46
+ :'pulp_href' => :'pulp_href',
47
47
  :'name' => :'name',
48
- :'retain_repo_versions' => :'retain_repo_versions'
48
+ :'description' => :'description'
49
49
  }
50
50
  end
51
51
 
52
52
  # Attribute type mapping.
53
53
  def self.openapi_types
54
54
  {
55
- :'latest_version_href' => :'String',
56
- :'description' => :'String',
57
55
  :'pulp_labels' => :'Object',
58
- :'pulp_href' => :'String',
56
+ :'latest_version_href' => :'String',
59
57
  :'versions_href' => :'String',
58
+ :'retain_repo_versions' => :'Integer',
60
59
  :'pulp_created' => :'DateTime',
60
+ :'pulp_href' => :'String',
61
61
  :'name' => :'String',
62
- :'retain_repo_versions' => :'Integer'
62
+ :'description' => :'String'
63
63
  }
64
64
  end
65
65
 
66
66
  # List of attributes with nullable: true
67
67
  def self.openapi_nullable
68
68
  Set.new([
69
- :'description',
70
- :'retain_repo_versions'
69
+ :'retain_repo_versions',
70
+ :'description'
71
71
  ])
72
72
  end
73
73
 
@@ -86,36 +86,36 @@ module PulpContainerClient
86
86
  h[k.to_sym] = v
87
87
  }
88
88
 
89
- if attributes.key?(:'latest_version_href')
90
- self.latest_version_href = attributes[:'latest_version_href']
91
- end
92
-
93
- if attributes.key?(:'description')
94
- self.description = attributes[:'description']
95
- end
96
-
97
89
  if attributes.key?(:'pulp_labels')
98
90
  self.pulp_labels = attributes[:'pulp_labels']
99
91
  end
100
92
 
101
- if attributes.key?(:'pulp_href')
102
- self.pulp_href = attributes[:'pulp_href']
93
+ if attributes.key?(:'latest_version_href')
94
+ self.latest_version_href = attributes[:'latest_version_href']
103
95
  end
104
96
 
105
97
  if attributes.key?(:'versions_href')
106
98
  self.versions_href = attributes[:'versions_href']
107
99
  end
108
100
 
101
+ if attributes.key?(:'retain_repo_versions')
102
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
103
+ end
104
+
109
105
  if attributes.key?(:'pulp_created')
110
106
  self.pulp_created = attributes[:'pulp_created']
111
107
  end
112
108
 
109
+ if attributes.key?(:'pulp_href')
110
+ self.pulp_href = attributes[:'pulp_href']
111
+ end
112
+
113
113
  if attributes.key?(:'name')
114
114
  self.name = attributes[:'name']
115
115
  end
116
116
 
117
- if attributes.key?(:'retain_repo_versions')
118
- self.retain_repo_versions = attributes[:'retain_repo_versions']
117
+ if attributes.key?(:'description')
118
+ self.description = attributes[:'description']
119
119
  end
120
120
  end
121
121
 
@@ -123,22 +123,22 @@ module PulpContainerClient
123
123
  # @return Array for valid properties with the reasons
124
124
  def list_invalid_properties
125
125
  invalid_properties = Array.new
126
- if @name.nil?
127
- invalid_properties.push('invalid value for "name", name cannot be nil.')
128
- end
129
-
130
126
  if !@retain_repo_versions.nil? && @retain_repo_versions < 1
131
127
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
132
128
  end
133
129
 
130
+ if @name.nil?
131
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
132
+ end
133
+
134
134
  invalid_properties
135
135
  end
136
136
 
137
137
  # Check to see if the all the properties in the model are valid
138
138
  # @return true if the model is valid
139
139
  def valid?
140
- return false if @name.nil?
141
140
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
141
+ return false if @name.nil?
142
142
  true
143
143
  end
144
144
 
@@ -157,14 +157,14 @@ module PulpContainerClient
157
157
  def ==(o)
158
158
  return true if self.equal?(o)
159
159
  self.class == o.class &&
160
- latest_version_href == o.latest_version_href &&
161
- description == o.description &&
162
160
  pulp_labels == o.pulp_labels &&
163
- pulp_href == o.pulp_href &&
161
+ latest_version_href == o.latest_version_href &&
164
162
  versions_href == o.versions_href &&
163
+ retain_repo_versions == o.retain_repo_versions &&
165
164
  pulp_created == o.pulp_created &&
165
+ pulp_href == o.pulp_href &&
166
166
  name == o.name &&
167
- retain_repo_versions == o.retain_repo_versions
167
+ description == o.description
168
168
  end
169
169
 
170
170
  # @see the `==` method
@@ -176,7 +176,7 @@ module PulpContainerClient
176
176
  # Calculates hash code according to all attributes.
177
177
  # @return [Integer] Hash code
178
178
  def hash
179
- [latest_version_href, description, pulp_labels, pulp_href, versions_href, pulp_created, name, retain_repo_versions].hash
179
+ [pulp_labels, latest_version_href, versions_href, retain_repo_versions, pulp_created, pulp_href, name, description].hash
180
180
  end
181
181
 
182
182
  # Builds the object from hash
@@ -15,11 +15,11 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for ContainerDistribution.
17
17
  class PatchedcontainerContainerDistribution
18
- attr_accessor :pulp_labels
19
-
20
18
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
21
19
  attr_accessor :base_path
22
20
 
21
+ attr_accessor :pulp_labels
22
+
23
23
  # The latest RepositoryVersion for this Repository will be served.
24
24
  attr_accessor :repository
25
25
 
@@ -41,8 +41,8 @@ module PulpContainerClient
41
41
  # Attribute mapping from ruby-style variable name to JSON key.
42
42
  def self.attribute_map
43
43
  {
44
- :'pulp_labels' => :'pulp_labels',
45
44
  :'base_path' => :'base_path',
45
+ :'pulp_labels' => :'pulp_labels',
46
46
  :'repository' => :'repository',
47
47
  :'content_guard' => :'content_guard',
48
48
  :'name' => :'name',
@@ -55,8 +55,8 @@ module PulpContainerClient
55
55
  # Attribute type mapping.
56
56
  def self.openapi_types
57
57
  {
58
- :'pulp_labels' => :'Object',
59
58
  :'base_path' => :'String',
59
+ :'pulp_labels' => :'Object',
60
60
  :'repository' => :'String',
61
61
  :'content_guard' => :'String',
62
62
  :'name' => :'String',
@@ -90,14 +90,14 @@ module PulpContainerClient
90
90
  h[k.to_sym] = v
91
91
  }
92
92
 
93
- if attributes.key?(:'pulp_labels')
94
- self.pulp_labels = attributes[:'pulp_labels']
95
- end
96
-
97
93
  if attributes.key?(:'base_path')
98
94
  self.base_path = attributes[:'base_path']
99
95
  end
100
96
 
97
+ if attributes.key?(:'pulp_labels')
98
+ self.pulp_labels = attributes[:'pulp_labels']
99
+ end
100
+
101
101
  if attributes.key?(:'repository')
102
102
  self.repository = attributes[:'repository']
103
103
  end
@@ -186,8 +186,8 @@ module PulpContainerClient
186
186
  def ==(o)
187
187
  return true if self.equal?(o)
188
188
  self.class == o.class &&
189
- pulp_labels == o.pulp_labels &&
190
189
  base_path == o.base_path &&
190
+ pulp_labels == o.pulp_labels &&
191
191
  repository == o.repository &&
192
192
  content_guard == o.content_guard &&
193
193
  name == o.name &&
@@ -205,7 +205,7 @@ module PulpContainerClient
205
205
  # Calculates hash code according to all attributes.
206
206
  # @return [Integer] Hash code
207
207
  def hash
208
- [pulp_labels, base_path, repository, content_guard, name, repository_version, private, description].hash
208
+ [base_path, pulp_labels, repository, content_guard, name, repository_version, private, description].hash
209
209
  end
210
210
 
211
211
  # Builds the object from hash
@@ -15,42 +15,42 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class PatchedcontainerContainerPushRepository
18
- # An optional description.
19
- attr_accessor :description
20
-
21
18
  attr_accessor :pulp_labels
22
19
 
20
+ # Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future.
21
+ attr_accessor :retain_repo_versions
22
+
23
23
  # A unique name for this repository.
24
24
  attr_accessor :name
25
25
 
26
- # Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future.
27
- attr_accessor :retain_repo_versions
26
+ # An optional description.
27
+ attr_accessor :description
28
28
 
29
29
  # Attribute mapping from ruby-style variable name to JSON key.
30
30
  def self.attribute_map
31
31
  {
32
- :'description' => :'description',
33
32
  :'pulp_labels' => :'pulp_labels',
33
+ :'retain_repo_versions' => :'retain_repo_versions',
34
34
  :'name' => :'name',
35
- :'retain_repo_versions' => :'retain_repo_versions'
35
+ :'description' => :'description'
36
36
  }
37
37
  end
38
38
 
39
39
  # Attribute type mapping.
40
40
  def self.openapi_types
41
41
  {
42
- :'description' => :'String',
43
42
  :'pulp_labels' => :'Object',
43
+ :'retain_repo_versions' => :'Integer',
44
44
  :'name' => :'String',
45
- :'retain_repo_versions' => :'Integer'
45
+ :'description' => :'String'
46
46
  }
47
47
  end
48
48
 
49
49
  # List of attributes with nullable: true
50
50
  def self.openapi_nullable
51
51
  Set.new([
52
- :'description',
53
- :'retain_repo_versions'
52
+ :'retain_repo_versions',
53
+ :'description'
54
54
  ])
55
55
  end
56
56
 
@@ -69,20 +69,20 @@ module PulpContainerClient
69
69
  h[k.to_sym] = v
70
70
  }
71
71
 
72
- if attributes.key?(:'description')
73
- self.description = attributes[:'description']
74
- end
75
-
76
72
  if attributes.key?(:'pulp_labels')
77
73
  self.pulp_labels = attributes[:'pulp_labels']
78
74
  end
79
75
 
76
+ if attributes.key?(:'retain_repo_versions')
77
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
78
+ end
79
+
80
80
  if attributes.key?(:'name')
81
81
  self.name = attributes[:'name']
82
82
  end
83
83
 
84
- if attributes.key?(:'retain_repo_versions')
85
- self.retain_repo_versions = attributes[:'retain_repo_versions']
84
+ if attributes.key?(:'description')
85
+ self.description = attributes[:'description']
86
86
  end
87
87
  end
88
88
 
@@ -90,16 +90,16 @@ module PulpContainerClient
90
90
  # @return Array for valid properties with the reasons
91
91
  def list_invalid_properties
92
92
  invalid_properties = Array.new
93
- if !@description.nil? && @description.to_s.length < 1
94
- invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
93
+ if !@retain_repo_versions.nil? && @retain_repo_versions < 1
94
+ invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
95
95
  end
96
96
 
97
97
  if !@name.nil? && @name.to_s.length < 1
98
98
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
99
99
  end
100
100
 
101
- if !@retain_repo_versions.nil? && @retain_repo_versions < 1
102
- invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
101
+ if !@description.nil? && @description.to_s.length < 1
102
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
103
103
  end
104
104
 
105
105
  invalid_properties
@@ -108,20 +108,20 @@ module PulpContainerClient
108
108
  # Check to see if the all the properties in the model are valid
109
109
  # @return true if the model is valid
110
110
  def valid?
111
- return false if !@description.nil? && @description.to_s.length < 1
112
- return false if !@name.nil? && @name.to_s.length < 1
113
111
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
112
+ return false if !@name.nil? && @name.to_s.length < 1
113
+ return false if !@description.nil? && @description.to_s.length < 1
114
114
  true
115
115
  end
116
116
 
117
117
  # Custom attribute writer method with validation
118
- # @param [Object] description Value to be assigned
119
- def description=(description)
120
- if !description.nil? && description.to_s.length < 1
121
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
118
+ # @param [Object] retain_repo_versions Value to be assigned
119
+ def retain_repo_versions=(retain_repo_versions)
120
+ if !retain_repo_versions.nil? && retain_repo_versions < 1
121
+ fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
122
122
  end
123
123
 
124
- @description = description
124
+ @retain_repo_versions = retain_repo_versions
125
125
  end
126
126
 
127
127
  # Custom attribute writer method with validation
@@ -135,13 +135,13 @@ module PulpContainerClient
135
135
  end
136
136
 
137
137
  # Custom attribute writer method with validation
138
- # @param [Object] retain_repo_versions Value to be assigned
139
- def retain_repo_versions=(retain_repo_versions)
140
- if !retain_repo_versions.nil? && retain_repo_versions < 1
141
- fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
138
+ # @param [Object] description Value to be assigned
139
+ def description=(description)
140
+ if !description.nil? && description.to_s.length < 1
141
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
142
142
  end
143
143
 
144
- @retain_repo_versions = retain_repo_versions
144
+ @description = description
145
145
  end
146
146
 
147
147
  # Checks equality by comparing each attribute.
@@ -149,10 +149,10 @@ module PulpContainerClient
149
149
  def ==(o)
150
150
  return true if self.equal?(o)
151
151
  self.class == o.class &&
152
- description == o.description &&
153
152
  pulp_labels == o.pulp_labels &&
153
+ retain_repo_versions == o.retain_repo_versions &&
154
154
  name == o.name &&
155
- retain_repo_versions == o.retain_repo_versions
155
+ description == o.description
156
156
  end
157
157
 
158
158
  # @see the `==` method
@@ -164,7 +164,7 @@ module PulpContainerClient
164
164
  # Calculates hash code according to all attributes.
165
165
  # @return [Integer] Hash code
166
166
  def hash
167
- [description, pulp_labels, name, retain_repo_versions].hash
167
+ [pulp_labels, retain_repo_versions, name, description].hash
168
168
  end
169
169
 
170
170
  # 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.10.10'
14
+ VERSION = '2.10.11'
15
15
  end
@@ -32,13 +32,13 @@ describe 'ContainerContainerDistributionResponse' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistributionResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_labels"' do
35
+ describe 'test attribute "base_path"' 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 "base_path"' 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,7 +50,7 @@ describe 'ContainerContainerDistributionResponse' do
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "pulp_href"' do
53
+ describe 'test attribute "content_guard"' 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,7 +62,7 @@ describe 'ContainerContainerDistributionResponse' do
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "content_guard"' 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
@@ -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 "pulp_labels"' do
35
+ describe 'test attribute "base_path"' 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 "base_path"' 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
@@ -32,37 +32,37 @@ describe 'ContainerContainerPushRepositoryResponse' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepositoryResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "latest_version_href"' do
35
+ describe 'test attribute "pulp_labels"' 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 "description"' 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 "pulp_labels"' do
47
+ describe 'test attribute "versions_href"' 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_href"' 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 "versions_href"' do
59
+ describe 'test attribute "pulp_created"' 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_created"' 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
@@ -74,7 +74,7 @@ describe 'ContainerContainerPushRepositoryResponse' do
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "retain_repo_versions"' do
77
+ describe 'test attribute "description"' 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 'ContainerContainerPushRepository' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepository)
33
33
  end
34
34
  end
35
- describe 'test attribute "description"' do
35
+ describe 'test attribute "pulp_labels"' 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_labels"' do
41
+ describe 'test attribute "retain_repo_versions"' 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 'ContainerContainerPushRepository' do
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "retain_repo_versions"' do
53
+ describe 'test attribute "description"' 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
@@ -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 "pulp_labels"' do
35
+ describe 'test attribute "base_path"' 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 "base_path"' 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
@@ -32,13 +32,13 @@ describe 'PatchedcontainerContainerPushRepository' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerPushRepository)
33
33
  end
34
34
  end
35
- describe 'test attribute "description"' do
35
+ describe 'test attribute "pulp_labels"' 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_labels"' do
41
+ describe 'test attribute "retain_repo_versions"' 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 'PatchedcontainerContainerPushRepository' do
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "retain_repo_versions"' do
53
+ describe 'test attribute "description"' 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