pulp_container_client 2.11.0.dev1640056372 → 2.11.0.dev1640142709

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pulp_container_client might be problematic. Click here for more details.

@@ -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
+ # 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
+
18
23
  # An optional description.
19
24
  attr_accessor :description
20
25
 
21
- attr_accessor :latest_version_href
26
+ attr_accessor :pulp_href
22
27
 
23
- # Timestamp of creation.
24
- attr_accessor :pulp_created
28
+ attr_accessor :pulp_labels
25
29
 
26
- attr_accessor :pulp_href
30
+ attr_accessor :versions_href
27
31
 
28
- # 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.
29
- attr_accessor :retain_repo_versions
32
+ # Timestamp of creation.
33
+ attr_accessor :pulp_created
30
34
 
31
35
  # A unique name for this repository.
32
36
  attr_accessor :name
33
37
 
34
- attr_accessor :versions_href
35
-
36
- attr_accessor :pulp_labels
37
-
38
38
  # Attribute mapping from ruby-style variable name to JSON key.
39
39
  def self.attribute_map
40
40
  {
41
- :'description' => :'description',
42
41
  :'latest_version_href' => :'latest_version_href',
43
- :'pulp_created' => :'pulp_created',
44
- :'pulp_href' => :'pulp_href',
45
42
  :'retain_repo_versions' => :'retain_repo_versions',
46
- :'name' => :'name',
43
+ :'description' => :'description',
44
+ :'pulp_href' => :'pulp_href',
45
+ :'pulp_labels' => :'pulp_labels',
47
46
  :'versions_href' => :'versions_href',
48
- :'pulp_labels' => :'pulp_labels'
47
+ :'pulp_created' => :'pulp_created',
48
+ :'name' => :'name'
49
49
  }
50
50
  end
51
51
 
52
52
  # Attribute type mapping.
53
53
  def self.openapi_types
54
54
  {
55
- :'description' => :'String',
56
55
  :'latest_version_href' => :'String',
57
- :'pulp_created' => :'DateTime',
58
- :'pulp_href' => :'String',
59
56
  :'retain_repo_versions' => :'Integer',
60
- :'name' => :'String',
57
+ :'description' => :'String',
58
+ :'pulp_href' => :'String',
59
+ :'pulp_labels' => :'Object',
61
60
  :'versions_href' => :'String',
62
- :'pulp_labels' => :'Object'
61
+ :'pulp_created' => :'DateTime',
62
+ :'name' => :'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
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?(:'description')
90
- self.description = attributes[:'description']
91
- end
92
-
93
89
  if attributes.key?(:'latest_version_href')
94
90
  self.latest_version_href = attributes[:'latest_version_href']
95
91
  end
96
92
 
97
- if attributes.key?(:'pulp_created')
98
- self.pulp_created = attributes[:'pulp_created']
93
+ if attributes.key?(:'retain_repo_versions')
94
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
99
95
  end
100
96
 
101
- if attributes.key?(:'pulp_href')
102
- self.pulp_href = attributes[:'pulp_href']
97
+ if attributes.key?(:'description')
98
+ self.description = attributes[:'description']
103
99
  end
104
100
 
105
- if attributes.key?(:'retain_repo_versions')
106
- self.retain_repo_versions = attributes[:'retain_repo_versions']
101
+ if attributes.key?(:'pulp_href')
102
+ self.pulp_href = attributes[:'pulp_href']
107
103
  end
108
104
 
109
- if attributes.key?(:'name')
110
- self.name = attributes[:'name']
105
+ if attributes.key?(:'pulp_labels')
106
+ self.pulp_labels = attributes[:'pulp_labels']
111
107
  end
112
108
 
113
109
  if attributes.key?(:'versions_href')
114
110
  self.versions_href = attributes[:'versions_href']
115
111
  end
116
112
 
117
- if attributes.key?(:'pulp_labels')
118
- self.pulp_labels = attributes[:'pulp_labels']
113
+ if attributes.key?(:'pulp_created')
114
+ self.pulp_created = attributes[:'pulp_created']
115
+ end
116
+
117
+ if attributes.key?(:'name')
118
+ self.name = attributes[:'name']
119
119
  end
120
120
  end
121
121
 
@@ -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
- description == o.description &&
161
160
  latest_version_href == o.latest_version_href &&
162
- pulp_created == o.pulp_created &&
163
- pulp_href == o.pulp_href &&
164
161
  retain_repo_versions == o.retain_repo_versions &&
165
- name == o.name &&
162
+ description == o.description &&
163
+ pulp_href == o.pulp_href &&
164
+ pulp_labels == o.pulp_labels &&
166
165
  versions_href == o.versions_href &&
167
- pulp_labels == o.pulp_labels
166
+ pulp_created == o.pulp_created &&
167
+ name == o.name
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
- [description, latest_version_href, pulp_created, pulp_href, retain_repo_versions, name, versions_href, pulp_labels].hash
179
+ [latest_version_href, retain_repo_versions, description, pulp_href, pulp_labels, versions_href, pulp_created, name].hash
180
180
  end
181
181
 
182
182
  # Builds the object from hash
@@ -15,19 +15,19 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for ContainerDistribution.
17
17
  class PatchedcontainerContainerDistribution
18
+ # The latest RepositoryVersion for this Repository will be served.
19
+ attr_accessor :repository
20
+
21
+ attr_accessor :pulp_labels
22
+
18
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\")
19
24
  attr_accessor :base_path
20
25
 
21
- # An optional content-guard. If none is specified, a default one will be used.
22
- attr_accessor :content_guard
23
-
24
26
  # A unique name. Ex, `rawhide` and `stable`.
25
27
  attr_accessor :name
26
28
 
27
- attr_accessor :pulp_labels
28
-
29
- # The latest RepositoryVersion for this Repository will be served.
30
- attr_accessor :repository
29
+ # An optional content-guard. If none is specified, a default one will be used.
30
+ attr_accessor :content_guard
31
31
 
32
32
  # RepositoryVersion to be served
33
33
  attr_accessor :repository_version
@@ -41,11 +41,11 @@ module PulpContainerClient
41
41
  # Attribute mapping from ruby-style variable name to JSON key.
42
42
  def self.attribute_map
43
43
  {
44
+ :'repository' => :'repository',
45
+ :'pulp_labels' => :'pulp_labels',
44
46
  :'base_path' => :'base_path',
45
- :'content_guard' => :'content_guard',
46
47
  :'name' => :'name',
47
- :'pulp_labels' => :'pulp_labels',
48
- :'repository' => :'repository',
48
+ :'content_guard' => :'content_guard',
49
49
  :'repository_version' => :'repository_version',
50
50
  :'private' => :'private',
51
51
  :'description' => :'description'
@@ -55,11 +55,11 @@ module PulpContainerClient
55
55
  # Attribute type mapping.
56
56
  def self.openapi_types
57
57
  {
58
+ :'repository' => :'String',
59
+ :'pulp_labels' => :'Object',
58
60
  :'base_path' => :'String',
59
- :'content_guard' => :'String',
60
61
  :'name' => :'String',
61
- :'pulp_labels' => :'Object',
62
- :'repository' => :'String',
62
+ :'content_guard' => :'String',
63
63
  :'repository_version' => :'String',
64
64
  :'private' => :'Boolean',
65
65
  :'description' => :'String'
@@ -90,24 +90,24 @@ module PulpContainerClient
90
90
  h[k.to_sym] = v
91
91
  }
92
92
 
93
- if attributes.key?(:'base_path')
94
- self.base_path = attributes[:'base_path']
93
+ if attributes.key?(:'repository')
94
+ self.repository = attributes[:'repository']
95
95
  end
96
96
 
97
- if attributes.key?(:'content_guard')
98
- self.content_guard = attributes[:'content_guard']
97
+ if attributes.key?(:'pulp_labels')
98
+ self.pulp_labels = attributes[:'pulp_labels']
99
99
  end
100
100
 
101
- if attributes.key?(:'name')
102
- self.name = attributes[:'name']
101
+ if attributes.key?(:'base_path')
102
+ self.base_path = attributes[:'base_path']
103
103
  end
104
104
 
105
- if attributes.key?(:'pulp_labels')
106
- self.pulp_labels = attributes[:'pulp_labels']
105
+ if attributes.key?(:'name')
106
+ self.name = attributes[:'name']
107
107
  end
108
108
 
109
- if attributes.key?(:'repository')
110
- self.repository = attributes[:'repository']
109
+ if attributes.key?(:'content_guard')
110
+ self.content_guard = attributes[:'content_guard']
111
111
  end
112
112
 
113
113
  if attributes.key?(:'repository_version')
@@ -186,11 +186,11 @@ module PulpContainerClient
186
186
  def ==(o)
187
187
  return true if self.equal?(o)
188
188
  self.class == o.class &&
189
+ repository == o.repository &&
190
+ pulp_labels == o.pulp_labels &&
189
191
  base_path == o.base_path &&
190
- content_guard == o.content_guard &&
191
192
  name == o.name &&
192
- pulp_labels == o.pulp_labels &&
193
- repository == o.repository &&
193
+ content_guard == o.content_guard &&
194
194
  repository_version == o.repository_version &&
195
195
  private == o.private &&
196
196
  description == o.description
@@ -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
- [base_path, content_guard, name, pulp_labels, repository, repository_version, private, description].hash
208
+ [repository, pulp_labels, base_path, name, content_guard, 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
+ # 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.
19
+ attr_accessor :retain_repo_versions
20
+
18
21
  # An optional description.
19
22
  attr_accessor :description
20
23
 
21
- # 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.
22
- attr_accessor :retain_repo_versions
24
+ attr_accessor :pulp_labels
23
25
 
24
26
  # A unique name for this repository.
25
27
  attr_accessor :name
26
28
 
27
- attr_accessor :pulp_labels
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
  :'retain_repo_versions' => :'retain_repo_versions',
34
- :'name' => :'name',
35
- :'pulp_labels' => :'pulp_labels'
33
+ :'description' => :'description',
34
+ :'pulp_labels' => :'pulp_labels',
35
+ :'name' => :'name'
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
  :'retain_repo_versions' => :'Integer',
44
- :'name' => :'String',
45
- :'pulp_labels' => :'Object'
43
+ :'description' => :'String',
44
+ :'pulp_labels' => :'Object',
45
+ :'name' => :'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
52
  :'retain_repo_versions',
53
+ :'description',
54
54
  ])
55
55
  end
56
56
 
@@ -69,35 +69,35 @@ 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?(:'retain_repo_versions')
77
73
  self.retain_repo_versions = attributes[:'retain_repo_versions']
78
74
  end
79
75
 
80
- if attributes.key?(:'name')
81
- self.name = attributes[:'name']
76
+ if attributes.key?(:'description')
77
+ self.description = attributes[:'description']
82
78
  end
83
79
 
84
80
  if attributes.key?(:'pulp_labels')
85
81
  self.pulp_labels = attributes[:'pulp_labels']
86
82
  end
83
+
84
+ if attributes.key?(:'name')
85
+ self.name = attributes[:'name']
86
+ end
87
87
  end
88
88
 
89
89
  # Show invalid properties with the reasons. Usually used together with valid?
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.')
95
- end
96
-
97
93
  if !@retain_repo_versions.nil? && @retain_repo_versions < 1
98
94
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
99
95
  end
100
96
 
97
+ if !@description.nil? && @description.to_s.length < 1
98
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
99
+ end
100
+
101
101
  if !@name.nil? && @name.to_s.length < 1
102
102
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
103
103
  end
@@ -108,22 +108,12 @@ 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
111
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
112
+ return false if !@description.nil? && @description.to_s.length < 1
113
113
  return false if !@name.nil? && @name.to_s.length < 1
114
114
  true
115
115
  end
116
116
 
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.'
122
- end
123
-
124
- @description = description
125
- end
126
-
127
117
  # Custom attribute writer method with validation
128
118
  # @param [Object] retain_repo_versions Value to be assigned
129
119
  def retain_repo_versions=(retain_repo_versions)
@@ -134,6 +124,16 @@ module PulpContainerClient
134
124
  @retain_repo_versions = retain_repo_versions
135
125
  end
136
126
 
127
+ # Custom attribute writer method with validation
128
+ # @param [Object] description Value to be assigned
129
+ def description=(description)
130
+ if !description.nil? && description.to_s.length < 1
131
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
132
+ end
133
+
134
+ @description = description
135
+ end
136
+
137
137
  # Custom attribute writer method with validation
138
138
  # @param [Object] name Value to be assigned
139
139
  def name=(name)
@@ -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
  retain_repo_versions == o.retain_repo_versions &&
154
- name == o.name &&
155
- pulp_labels == o.pulp_labels
153
+ description == o.description &&
154
+ pulp_labels == o.pulp_labels &&
155
+ name == o.name
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, retain_repo_versions, name, pulp_labels].hash
167
+ [retain_repo_versions, description, pulp_labels, name].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.11.0.dev1640056372'
14
+ VERSION = '2.11.0.dev1640142709'
15
15
  end
@@ -32,43 +32,43 @@ describe 'ContainerContainerDistributionResponse' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistributionResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "base_path"' 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 "pulp_created"' do
41
+ describe 'test attribute "pulp_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_href"' 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 "content_guard"' 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 "name"' 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_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
69
69
  end
70
70
 
71
- describe 'test attribute "repository"' 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
@@ -32,31 +32,31 @@ describe 'ContainerContainerDistribution' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistribution)
33
33
  end
34
34
  end
35
- describe 'test attribute "base_path"' 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 "content_guard"' 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 "name"' do
47
+ describe 'test attribute "base_path"' 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_labels"' do
53
+ describe 'test attribute "name"' 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 "repository"' 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
@@ -32,19 +32,19 @@ describe 'ContainerContainerPushRepositoryResponse' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepositoryResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "description"' do
35
+ describe 'test attribute "latest_version_href"' 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 "latest_version_href"' 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
45
45
  end
46
46
 
47
- describe 'test attribute "pulp_created"' 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
@@ -56,25 +56,25 @@ describe 'ContainerContainerPushRepositoryResponse' do
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "retain_repo_versions"' do
59
+ describe 'test attribute "pulp_labels"' 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 "name"' 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 "versions_href"' do
71
+ describe 'test attribute "pulp_created"' 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,25 +32,25 @@ 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 "retain_repo_versions"' 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 "retain_repo_versions"' do
41
+ describe 'test attribute "description"' 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 "name"' 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_labels"' do
53
+ describe 'test attribute "name"' 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,31 +32,31 @@ describe 'PatchedcontainerContainerDistribution' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerDistribution)
33
33
  end
34
34
  end
35
- describe 'test attribute "base_path"' 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 "content_guard"' 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 "name"' do
47
+ describe 'test attribute "base_path"' 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_labels"' do
53
+ describe 'test attribute "name"' 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 "repository"' 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