pulp_container_client 2.8.3 → 2.8.6

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,42 +15,42 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class ContainerContainerPushRepository
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
18
+ # An optional description.
19
+ attr_accessor :description
20
+
21
+ attr_accessor :pulp_labels
20
22
 
21
23
  # A unique name for this repository.
22
24
  attr_accessor :name
23
25
 
24
- attr_accessor :pulp_labels
25
-
26
- # An optional description.
27
- attr_accessor :description
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
28
28
 
29
29
  # Attribute mapping from ruby-style variable name to JSON key.
30
30
  def self.attribute_map
31
31
  {
32
- :'retain_repo_versions' => :'retain_repo_versions',
33
- :'name' => :'name',
32
+ :'description' => :'description',
34
33
  :'pulp_labels' => :'pulp_labels',
35
- :'description' => :'description'
34
+ :'name' => :'name',
35
+ :'retain_repo_versions' => :'retain_repo_versions'
36
36
  }
37
37
  end
38
38
 
39
39
  # Attribute type mapping.
40
40
  def self.openapi_types
41
41
  {
42
- :'retain_repo_versions' => :'Integer',
43
- :'name' => :'String',
42
+ :'description' => :'String',
44
43
  :'pulp_labels' => :'Object',
45
- :'description' => :'String'
44
+ :'name' => :'String',
45
+ :'retain_repo_versions' => :'Integer'
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
- :'retain_repo_versions',
53
- :'description'
52
+ :'description',
53
+ :'retain_repo_versions'
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?(:'retain_repo_versions')
73
- self.retain_repo_versions = attributes[:'retain_repo_versions']
74
- end
75
-
76
- if attributes.key?(:'name')
77
- self.name = attributes[:'name']
72
+ if attributes.key?(:'description')
73
+ self.description = attributes[:'description']
78
74
  end
79
75
 
80
76
  if attributes.key?(:'pulp_labels')
81
77
  self.pulp_labels = attributes[:'pulp_labels']
82
78
  end
83
79
 
84
- if attributes.key?(:'description')
85
- self.description = attributes[:'description']
80
+ if attributes.key?(:'name')
81
+ self.name = attributes[:'name']
82
+ end
83
+
84
+ if attributes.key?(:'retain_repo_versions')
85
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
86
86
  end
87
87
  end
88
88
 
@@ -90,22 +90,22 @@ 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 !@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
- end
96
-
97
93
  if @name.nil?
98
94
  invalid_properties.push('invalid value for "name", name cannot be nil.')
99
95
  end
100
96
 
97
+ if !@retain_repo_versions.nil? && @retain_repo_versions < 1
98
+ invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
99
+ end
100
+
101
101
  invalid_properties
102
102
  end
103
103
 
104
104
  # Check to see if the all the properties in the model are valid
105
105
  # @return true if the model is valid
106
106
  def valid?
107
- return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
108
107
  return false if @name.nil?
108
+ return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
109
109
  true
110
110
  end
111
111
 
@@ -124,10 +124,10 @@ module PulpContainerClient
124
124
  def ==(o)
125
125
  return true if self.equal?(o)
126
126
  self.class == o.class &&
127
- retain_repo_versions == o.retain_repo_versions &&
128
- name == o.name &&
127
+ description == o.description &&
129
128
  pulp_labels == o.pulp_labels &&
130
- description == o.description
129
+ name == o.name &&
130
+ retain_repo_versions == o.retain_repo_versions
131
131
  end
132
132
 
133
133
  # @see the `==` method
@@ -139,7 +139,7 @@ module PulpContainerClient
139
139
  # Calculates hash code according to all attributes.
140
140
  # @return [Integer] Hash code
141
141
  def hash
142
- [retain_repo_versions, name, pulp_labels, description].hash
142
+ [description, pulp_labels, name, retain_repo_versions].hash
143
143
  end
144
144
 
145
145
  # Builds the object from hash
@@ -15,59 +15,59 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class ContainerContainerPushRepositoryResponse
18
- attr_accessor :versions_href
19
-
20
- attr_accessor :latest_version_href
18
+ # An optional description.
19
+ attr_accessor :description
21
20
 
22
21
  # Timestamp of creation.
23
22
  attr_accessor :pulp_created
24
23
 
25
- # 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.
26
- attr_accessor :retain_repo_versions
24
+ attr_accessor :pulp_labels
27
25
 
28
- attr_accessor :pulp_href
26
+ attr_accessor :latest_version_href
29
27
 
30
28
  # A unique name for this repository.
31
29
  attr_accessor :name
32
30
 
33
- attr_accessor :pulp_labels
31
+ # 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.
32
+ attr_accessor :retain_repo_versions
34
33
 
35
- # An optional description.
36
- attr_accessor :description
34
+ attr_accessor :pulp_href
35
+
36
+ attr_accessor :versions_href
37
37
 
38
38
  # Attribute mapping from ruby-style variable name to JSON key.
39
39
  def self.attribute_map
40
40
  {
41
- :'versions_href' => :'versions_href',
42
- :'latest_version_href' => :'latest_version_href',
41
+ :'description' => :'description',
43
42
  :'pulp_created' => :'pulp_created',
43
+ :'pulp_labels' => :'pulp_labels',
44
+ :'latest_version_href' => :'latest_version_href',
45
+ :'name' => :'name',
44
46
  :'retain_repo_versions' => :'retain_repo_versions',
45
47
  :'pulp_href' => :'pulp_href',
46
- :'name' => :'name',
47
- :'pulp_labels' => :'pulp_labels',
48
- :'description' => :'description'
48
+ :'versions_href' => :'versions_href'
49
49
  }
50
50
  end
51
51
 
52
52
  # Attribute type mapping.
53
53
  def self.openapi_types
54
54
  {
55
- :'versions_href' => :'String',
56
- :'latest_version_href' => :'String',
55
+ :'description' => :'String',
57
56
  :'pulp_created' => :'DateTime',
57
+ :'pulp_labels' => :'Object',
58
+ :'latest_version_href' => :'String',
59
+ :'name' => :'String',
58
60
  :'retain_repo_versions' => :'Integer',
59
61
  :'pulp_href' => :'String',
60
- :'name' => :'String',
61
- :'pulp_labels' => :'Object',
62
- :'description' => :'String'
62
+ :'versions_href' => :'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',
69
70
  :'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?(:'versions_href')
90
- self.versions_href = attributes[:'versions_href']
91
- end
92
-
93
- if attributes.key?(:'latest_version_href')
94
- self.latest_version_href = attributes[:'latest_version_href']
89
+ if attributes.key?(:'description')
90
+ self.description = attributes[:'description']
95
91
  end
96
92
 
97
93
  if attributes.key?(:'pulp_created')
98
94
  self.pulp_created = attributes[:'pulp_created']
99
95
  end
100
96
 
101
- if attributes.key?(:'retain_repo_versions')
102
- self.retain_repo_versions = attributes[:'retain_repo_versions']
97
+ if attributes.key?(:'pulp_labels')
98
+ self.pulp_labels = attributes[:'pulp_labels']
103
99
  end
104
100
 
105
- if attributes.key?(:'pulp_href')
106
- self.pulp_href = attributes[:'pulp_href']
101
+ if attributes.key?(:'latest_version_href')
102
+ self.latest_version_href = attributes[:'latest_version_href']
107
103
  end
108
104
 
109
105
  if attributes.key?(:'name')
110
106
  self.name = attributes[:'name']
111
107
  end
112
108
 
113
- if attributes.key?(:'pulp_labels')
114
- self.pulp_labels = attributes[:'pulp_labels']
109
+ if attributes.key?(:'retain_repo_versions')
110
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
115
111
  end
116
112
 
117
- if attributes.key?(:'description')
118
- self.description = attributes[:'description']
113
+ if attributes.key?(:'pulp_href')
114
+ self.pulp_href = attributes[:'pulp_href']
115
+ end
116
+
117
+ if attributes.key?(:'versions_href')
118
+ self.versions_href = attributes[:'versions_href']
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 !@retain_repo_versions.nil? && @retain_repo_versions < 1
127
- invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
128
- end
129
-
130
126
  if @name.nil?
131
127
  invalid_properties.push('invalid value for "name", name cannot be nil.')
132
128
  end
133
129
 
130
+ if !@retain_repo_versions.nil? && @retain_repo_versions < 1
131
+ invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
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 !@retain_repo_versions.nil? && @retain_repo_versions < 1
141
140
  return false if @name.nil?
141
+ return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
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
- versions_href == o.versions_href &&
161
- latest_version_href == o.latest_version_href &&
160
+ description == o.description &&
162
161
  pulp_created == o.pulp_created &&
162
+ pulp_labels == o.pulp_labels &&
163
+ latest_version_href == o.latest_version_href &&
164
+ name == o.name &&
163
165
  retain_repo_versions == o.retain_repo_versions &&
164
166
  pulp_href == o.pulp_href &&
165
- name == o.name &&
166
- pulp_labels == o.pulp_labels &&
167
- description == o.description
167
+ versions_href == o.versions_href
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
- [versions_href, latest_version_href, pulp_created, retain_repo_versions, pulp_href, name, pulp_labels, description].hash
179
+ [description, pulp_created, pulp_labels, latest_version_href, name, retain_repo_versions, pulp_href, versions_href].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 base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
19
+ attr_accessor :base_path
20
+
21
+ attr_accessor :pulp_labels
22
+
18
23
  # An optional content-guard. If none is specified, a default one will be used.
19
24
  attr_accessor :content_guard
20
25
 
21
- # The latest RepositoryVersion for this Repository will be served.
22
- attr_accessor :repository
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 base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
30
- attr_accessor :base_path
29
+ # The latest RepositoryVersion for this Repository will be served.
30
+ attr_accessor :repository
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
+ :'base_path' => :'base_path',
45
+ :'pulp_labels' => :'pulp_labels',
44
46
  :'content_guard' => :'content_guard',
45
- :'repository' => :'repository',
46
47
  :'name' => :'name',
47
- :'pulp_labels' => :'pulp_labels',
48
- :'base_path' => :'base_path',
48
+ :'repository' => :'repository',
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
+ :'base_path' => :'String',
59
+ :'pulp_labels' => :'Object',
58
60
  :'content_guard' => :'String',
59
- :'repository' => :'String',
60
61
  :'name' => :'String',
61
- :'pulp_labels' => :'Object',
62
- :'base_path' => :'String',
62
+ :'repository' => :'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?(:'content_guard')
94
- self.content_guard = attributes[:'content_guard']
93
+ if attributes.key?(:'base_path')
94
+ self.base_path = attributes[:'base_path']
95
95
  end
96
96
 
97
- if attributes.key?(:'repository')
98
- self.repository = attributes[:'repository']
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?(:'content_guard')
102
+ self.content_guard = attributes[:'content_guard']
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?(:'base_path')
110
- self.base_path = attributes[:'base_path']
109
+ if attributes.key?(:'repository')
110
+ self.repository = attributes[:'repository']
111
111
  end
112
112
 
113
113
  if attributes.key?(:'repository_version')
@@ -141,11 +141,11 @@ module PulpContainerClient
141
141
  def ==(o)
142
142
  return true if self.equal?(o)
143
143
  self.class == o.class &&
144
+ base_path == o.base_path &&
145
+ pulp_labels == o.pulp_labels &&
144
146
  content_guard == o.content_guard &&
145
- repository == o.repository &&
146
147
  name == o.name &&
147
- pulp_labels == o.pulp_labels &&
148
- base_path == o.base_path &&
148
+ repository == o.repository &&
149
149
  repository_version == o.repository_version &&
150
150
  private == o.private &&
151
151
  description == o.description
@@ -160,7 +160,7 @@ module PulpContainerClient
160
160
  # Calculates hash code according to all attributes.
161
161
  # @return [Integer] Hash code
162
162
  def hash
163
- [content_guard, repository, name, pulp_labels, base_path, repository_version, private, description].hash
163
+ [base_path, pulp_labels, content_guard, name, repository, repository_version, private, description].hash
164
164
  end
165
165
 
166
166
  # 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
18
+ # An optional description.
19
+ attr_accessor :description
20
+
21
+ attr_accessor :pulp_labels
20
22
 
21
23
  # A unique name for this repository.
22
24
  attr_accessor :name
23
25
 
24
- attr_accessor :pulp_labels
25
-
26
- # An optional description.
27
- attr_accessor :description
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
28
28
 
29
29
  # Attribute mapping from ruby-style variable name to JSON key.
30
30
  def self.attribute_map
31
31
  {
32
- :'retain_repo_versions' => :'retain_repo_versions',
33
- :'name' => :'name',
32
+ :'description' => :'description',
34
33
  :'pulp_labels' => :'pulp_labels',
35
- :'description' => :'description'
34
+ :'name' => :'name',
35
+ :'retain_repo_versions' => :'retain_repo_versions'
36
36
  }
37
37
  end
38
38
 
39
39
  # Attribute type mapping.
40
40
  def self.openapi_types
41
41
  {
42
- :'retain_repo_versions' => :'Integer',
43
- :'name' => :'String',
42
+ :'description' => :'String',
44
43
  :'pulp_labels' => :'Object',
45
- :'description' => :'String'
44
+ :'name' => :'String',
45
+ :'retain_repo_versions' => :'Integer'
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
- :'retain_repo_versions',
53
- :'description'
52
+ :'description',
53
+ :'retain_repo_versions'
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?(:'retain_repo_versions')
73
- self.retain_repo_versions = attributes[:'retain_repo_versions']
74
- end
75
-
76
- if attributes.key?(:'name')
77
- self.name = attributes[:'name']
72
+ if attributes.key?(:'description')
73
+ self.description = attributes[:'description']
78
74
  end
79
75
 
80
76
  if attributes.key?(:'pulp_labels')
81
77
  self.pulp_labels = attributes[:'pulp_labels']
82
78
  end
83
79
 
84
- if attributes.key?(:'description')
85
- self.description = attributes[:'description']
80
+ if attributes.key?(:'name')
81
+ self.name = attributes[:'name']
82
+ end
83
+
84
+ if attributes.key?(:'retain_repo_versions')
85
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
86
86
  end
87
87
  end
88
88
 
@@ -119,10 +119,10 @@ module PulpContainerClient
119
119
  def ==(o)
120
120
  return true if self.equal?(o)
121
121
  self.class == o.class &&
122
- retain_repo_versions == o.retain_repo_versions &&
123
- name == o.name &&
122
+ description == o.description &&
124
123
  pulp_labels == o.pulp_labels &&
125
- description == o.description
124
+ name == o.name &&
125
+ retain_repo_versions == o.retain_repo_versions
126
126
  end
127
127
 
128
128
  # @see the `==` method
@@ -134,7 +134,7 @@ module PulpContainerClient
134
134
  # Calculates hash code according to all attributes.
135
135
  # @return [Integer] Hash code
136
136
  def hash
137
- [retain_repo_versions, name, pulp_labels, description].hash
137
+ [description, pulp_labels, name, retain_repo_versions].hash
138
138
  end
139
139
 
140
140
  # 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.8.3'
14
+ VERSION = '2.8.6'
15
15
  end
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
27
27
  s.license = 'GPL-2.0+'
28
28
  s.required_ruby_version = ">= 1.9"
29
29
 
30
- s.add_runtime_dependency 'faraday', '>= 0.14.0'
30
+ s.add_runtime_dependency 'faraday', '~> 0.17', '< 1.9.0'
31
31
  s.add_runtime_dependency 'json', '~> 2.1', '>= 2.1.0'
32
32
 
33
33
  s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
@@ -32,7 +32,7 @@ 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 "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
@@ -44,13 +44,13 @@ describe 'ContainerContainerDistributionResponse' do
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 "repository"' 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,13 +62,13 @@ describe 'ContainerContainerDistributionResponse' do
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "pulp_labels"' do
65
+ describe 'test attribute "repository"' 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 "base_path"' do
71
+ describe 'test attribute "pulp_href"' 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 "content_guard"' 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 "repository"' 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 "content_guard"' 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 "base_path"' do
59
+ describe 'test attribute "repository"' 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