pulp_container_client 2.3.0.dev01611890753 → 2.4.0.dev01612840954

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -10
  3. data/docs/ContainerContainerDistribution.md +11 -7
  4. data/docs/ContainerContainerDistributionResponse.md +16 -12
  5. data/docs/{ContentguardsContentRedirectApi.md → ContentGuardsContentRedirectApi.md} +19 -19
  6. data/docs/DistributionsContainerApi.md +2 -0
  7. data/docs/PatchedcontainerContainerDistribution.md +11 -7
  8. data/docs/PulpContainerNamespacesApi.md +16 -5
  9. data/docs/RemotesContainerApi.md +2 -0
  10. data/docs/RepositoriesContainerApi.md +2 -0
  11. data/docs/RepositoriesContainerPushApi.md +116 -2
  12. data/docs/RepositoriesContainerVersionsApi.md +2 -2
  13. data/lib/pulp_container_client.rb +1 -1
  14. data/lib/pulp_container_client/api/{contentguards_content_redirect_api.rb → content_guards_content_redirect_api.rb} +22 -22
  15. data/lib/pulp_container_client/api/distributions_container_api.rb +3 -0
  16. data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +24 -7
  17. data/lib/pulp_container_client/api/remotes_container_api.rb +3 -0
  18. data/lib/pulp_container_client/api/repositories_container_api.rb +3 -0
  19. data/lib/pulp_container_client/api/repositories_container_push_api.rb +147 -4
  20. data/lib/pulp_container_client/api/repositories_container_versions_api.rb +4 -4
  21. data/lib/pulp_container_client/models/container_container_distribution.rb +58 -37
  22. data/lib/pulp_container_client/models/container_container_distribution_response.rb +75 -54
  23. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +53 -32
  24. data/lib/pulp_container_client/version.rb +1 -1
  25. data/spec/api/{contentguards_content_redirect_api_spec.rb → content_guards_content_redirect_api_spec.rb} +6 -6
  26. data/spec/api/distributions_container_api_spec.rb +1 -0
  27. data/spec/api/pulp_container_namespaces_api_spec.rb +7 -2
  28. data/spec/api/remotes_container_api_spec.rb +1 -0
  29. data/spec/api/repositories_container_api_spec.rb +1 -0
  30. data/spec/api/repositories_container_push_api_spec.rb +29 -2
  31. data/spec/api/repositories_container_versions_api_spec.rb +2 -2
  32. data/spec/models/container_container_distribution_response_spec.rb +20 -8
  33. data/spec/models/container_container_distribution_spec.rb +17 -5
  34. data/spec/models/patchedcontainer_container_distribution_spec.rb +17 -5
  35. metadata +6 -6
@@ -15,14 +15,6 @@ 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
-
23
- # The latest RepositoryVersion for this Repository will be served.
24
- attr_accessor :repository
25
-
26
18
  # RepositoryVersion to be served
27
19
  attr_accessor :repository_version
28
20
 
@@ -32,35 +24,54 @@ module PulpContainerClient
32
24
  # A unique name. Ex, `rawhide` and `stable`.
33
25
  attr_accessor :name
34
26
 
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
31
+
32
+ # The latest RepositoryVersion for this Repository will be served.
33
+ attr_accessor :repository
34
+
35
+ # Restrict pull access to explicitly authorized users. Defaults to unrestricted pull access.
36
+ attr_accessor :private
37
+
38
+ # An optional description.
39
+ attr_accessor :description
40
+
35
41
  # Attribute mapping from ruby-style variable name to JSON key.
36
42
  def self.attribute_map
37
43
  {
38
- :'base_path' => :'base_path',
39
- :'pulp_labels' => :'pulp_labels',
40
- :'repository' => :'repository',
41
44
  :'repository_version' => :'repository_version',
42
45
  :'content_guard' => :'content_guard',
43
- :'name' => :'name'
46
+ :'name' => :'name',
47
+ :'pulp_labels' => :'pulp_labels',
48
+ :'base_path' => :'base_path',
49
+ :'repository' => :'repository',
50
+ :'private' => :'private',
51
+ :'description' => :'description'
44
52
  }
45
53
  end
46
54
 
47
55
  # Attribute type mapping.
48
56
  def self.openapi_types
49
57
  {
50
- :'base_path' => :'String',
51
- :'pulp_labels' => :'Object',
52
- :'repository' => :'String',
53
58
  :'repository_version' => :'String',
54
59
  :'content_guard' => :'String',
55
- :'name' => :'String'
60
+ :'name' => :'String',
61
+ :'pulp_labels' => :'Object',
62
+ :'base_path' => :'String',
63
+ :'repository' => :'String',
64
+ :'private' => :'Boolean',
65
+ :'description' => :'String'
56
66
  }
57
67
  end
58
68
 
59
69
  # List of attributes with nullable: true
60
70
  def self.openapi_nullable
61
71
  Set.new([
62
- :'repository',
63
72
  :'repository_version',
73
+ :'repository',
74
+ :'description'
64
75
  ])
65
76
  end
66
77
 
@@ -79,28 +90,36 @@ module PulpContainerClient
79
90
  h[k.to_sym] = v
80
91
  }
81
92
 
82
- if attributes.key?(:'base_path')
83
- self.base_path = attributes[:'base_path']
93
+ if attributes.key?(:'repository_version')
94
+ self.repository_version = attributes[:'repository_version']
95
+ end
96
+
97
+ if attributes.key?(:'content_guard')
98
+ self.content_guard = attributes[:'content_guard']
99
+ end
100
+
101
+ if attributes.key?(:'name')
102
+ self.name = attributes[:'name']
84
103
  end
85
104
 
86
105
  if attributes.key?(:'pulp_labels')
87
106
  self.pulp_labels = attributes[:'pulp_labels']
88
107
  end
89
108
 
90
- if attributes.key?(:'repository')
91
- self.repository = attributes[:'repository']
109
+ if attributes.key?(:'base_path')
110
+ self.base_path = attributes[:'base_path']
92
111
  end
93
112
 
94
- if attributes.key?(:'repository_version')
95
- self.repository_version = attributes[:'repository_version']
113
+ if attributes.key?(:'repository')
114
+ self.repository = attributes[:'repository']
96
115
  end
97
116
 
98
- if attributes.key?(:'content_guard')
99
- self.content_guard = attributes[:'content_guard']
117
+ if attributes.key?(:'private')
118
+ self.private = attributes[:'private']
100
119
  end
101
120
 
102
- if attributes.key?(:'name')
103
- self.name = attributes[:'name']
121
+ if attributes.key?(:'description')
122
+ self.description = attributes[:'description']
104
123
  end
105
124
  end
106
125
 
@@ -122,12 +141,14 @@ module PulpContainerClient
122
141
  def ==(o)
123
142
  return true if self.equal?(o)
124
143
  self.class == o.class &&
125
- base_path == o.base_path &&
126
- pulp_labels == o.pulp_labels &&
127
- repository == o.repository &&
128
144
  repository_version == o.repository_version &&
129
145
  content_guard == o.content_guard &&
130
- name == o.name
146
+ name == o.name &&
147
+ pulp_labels == o.pulp_labels &&
148
+ base_path == o.base_path &&
149
+ repository == o.repository &&
150
+ private == o.private &&
151
+ description == o.description
131
152
  end
132
153
 
133
154
  # @see the `==` method
@@ -139,7 +160,7 @@ module PulpContainerClient
139
160
  # Calculates hash code according to all attributes.
140
161
  # @return [Integer] Hash code
141
162
  def hash
142
- [base_path, pulp_labels, repository, repository_version, content_guard, name].hash
163
+ [repository_version, content_guard, name, pulp_labels, base_path, repository, private, description].hash
143
164
  end
144
165
 
145
166
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.2.3
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.3.0.dev01611890753'
14
+ VERSION = '2.4.0.dev01612840954'
15
15
  end
@@ -13,22 +13,22 @@ OpenAPI Generator version: 4.2.3
13
13
  require 'spec_helper'
14
14
  require 'json'
15
15
 
16
- # Unit tests for PulpContainerClient::ContentguardsContentRedirectApi
16
+ # Unit tests for PulpContainerClient::ContentGuardsContentRedirectApi
17
17
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
18
  # Please update as you see appropriate
19
- describe 'ContentguardsContentRedirectApi' do
19
+ describe 'ContentGuardsContentRedirectApi' do
20
20
  before do
21
21
  # run before each test
22
- @api_instance = PulpContainerClient::ContentguardsContentRedirectApi.new
22
+ @api_instance = PulpContainerClient::ContentGuardsContentRedirectApi.new
23
23
  end
24
24
 
25
25
  after do
26
26
  # run after each test
27
27
  end
28
28
 
29
- describe 'test an instance of ContentguardsContentRedirectApi' do
30
- it 'should create an instance of ContentguardsContentRedirectApi' do
31
- expect(@api_instance).to be_instance_of(PulpContainerClient::ContentguardsContentRedirectApi)
29
+ describe 'test an instance of ContentGuardsContentRedirectApi' do
30
+ it 'should create an instance of ContentGuardsContentRedirectApi' do
31
+ expect(@api_instance).to be_instance_of(PulpContainerClient::ContentGuardsContentRedirectApi)
32
32
  end
33
33
  end
34
34
 
@@ -73,6 +73,7 @@ describe 'DistributionsContainerApi' do
73
73
  # @option opts [String] :namespace__name namespace__name
74
74
  # @option opts [Integer] :offset The initial index from which to return the results.
75
75
  # @option opts [String] :ordering Which field to use when ordering the results.
76
+ # @option opts [String] :pulp_label_select pulp_label_select
76
77
  # @option opts [String] :fields A list of fields to include in the response.
77
78
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
78
79
  # @return [PaginatedcontainerContainerDistributionResponseList]
@@ -46,10 +46,10 @@ describe 'PulpContainerNamespacesApi' do
46
46
 
47
47
  # unit tests for delete
48
48
  # Delete a container namespace
49
- # ViewSet for ContainerNamespaces.
49
+ # Trigger an asynchronous delete task
50
50
  # @param container_container_namespace_href
51
51
  # @param [Hash] opts the optional parameters
52
- # @return [nil]
52
+ # @return [AsyncOperationResponse]
53
53
  describe 'delete test' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -61,6 +61,11 @@ describe 'PulpContainerNamespacesApi' do
61
61
  # ViewSet for ContainerNamespaces.
62
62
  # @param [Hash] opts the optional parameters
63
63
  # @option opts [Integer] :limit Number of results to return per page.
64
+ # @option opts [String] :name name
65
+ # @option opts [String] :name__contains name__contains
66
+ # @option opts [String] :name__icontains name__icontains
67
+ # @option opts [String] :name__in name__in
68
+ # @option opts [String] :name__startswith name__startswith
64
69
  # @option opts [Integer] :offset The initial index from which to return the results.
65
70
  # @option opts [String] :ordering Which field to use when ordering the results.
66
71
  # @option opts [String] :fields A list of fields to include in the response.
@@ -68,6 +68,7 @@ describe 'RemotesContainerApi' do
68
68
  # @option opts [String] :name__startswith name__startswith
69
69
  # @option opts [Integer] :offset The initial index from which to return the results.
70
70
  # @option opts [String] :ordering Which field to use when ordering the results.
71
+ # @option opts [String] :pulp_label_select pulp_label_select
71
72
  # @option opts [String] :pulp_last_updated pulp_last_updated
72
73
  # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
73
74
  # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
@@ -123,6 +123,7 @@ describe 'RepositoriesContainerApi' do
123
123
  # @option opts [String] :name__startswith name__startswith
124
124
  # @option opts [Integer] :offset The initial index from which to return the results.
125
125
  # @option opts [String] :ordering Which field to use when ordering the results.
126
+ # @option opts [String] :pulp_label_select pulp_label_select
126
127
  # @option opts [String] :fields A list of fields to include in the response.
127
128
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
128
129
  # @return [PaginatedcontainerContainerRepositoryResponseList]
@@ -34,7 +34,7 @@ describe 'RepositoriesContainerPushApi' do
34
34
 
35
35
  # unit tests for list
36
36
  # List container push repositorys
37
- # ViewSet for a container push repository. POST and DELETE are disallowed because a push repository is tightly coupled with a ContainerDistribution which handles it automatically. Created - during push operation, removed - with ContainerDistribution removal
37
+ # ViewSet for a container push repository. POST and DELETE are disallowed because a push repository is tightly coupled with a ContainerDistribution which handles it automatically. Created - during push operation, removed - with ContainerDistribution removal.
38
38
  # @param [Hash] opts the optional parameters
39
39
  # @option opts [Integer] :limit Number of results to return per page.
40
40
  # @option opts [String] :name name
@@ -44,6 +44,7 @@ describe 'RepositoriesContainerPushApi' do
44
44
  # @option opts [String] :name__startswith name__startswith
45
45
  # @option opts [Integer] :offset The initial index from which to return the results.
46
46
  # @option opts [String] :ordering Which field to use when ordering the results.
47
+ # @option opts [String] :pulp_label_select pulp_label_select
47
48
  # @option opts [String] :fields A list of fields to include in the response.
48
49
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
49
50
  # @return [PaginatedcontainerContainerPushRepositoryResponseList]
@@ -55,7 +56,7 @@ describe 'RepositoriesContainerPushApi' do
55
56
 
56
57
  # unit tests for read
57
58
  # Inspect a container push repository
58
- # ViewSet for a container push repository. POST and DELETE are disallowed because a push repository is tightly coupled with a ContainerDistribution which handles it automatically. Created - during push operation, removed - with ContainerDistribution removal
59
+ # ViewSet for a container push repository. POST and DELETE are disallowed because a push repository is tightly coupled with a ContainerDistribution which handles it automatically. Created - during push operation, removed - with ContainerDistribution removal.
59
60
  # @param container_container_push_repository_href
60
61
  # @param [Hash] opts the optional parameters
61
62
  # @option opts [String] :fields A list of fields to include in the response.
@@ -67,4 +68,30 @@ describe 'RepositoriesContainerPushApi' do
67
68
  end
68
69
  end
69
70
 
71
+ # unit tests for tag
72
+ # Create a Tag
73
+ # Trigger an asynchronous task to tag an image in the repository
74
+ # @param container_container_push_repository_href
75
+ # @param tag_image
76
+ # @param [Hash] opts the optional parameters
77
+ # @return [AsyncOperationResponse]
78
+ describe 'tag test' do
79
+ it 'should work' do
80
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
81
+ end
82
+ end
83
+
84
+ # unit tests for untag
85
+ # Delete a tag
86
+ # Trigger an asynchronous task to untag an image in the repository
87
+ # @param container_container_push_repository_href
88
+ # @param un_tag_image
89
+ # @param [Hash] opts the optional parameters
90
+ # @return [AsyncOperationResponse]
91
+ describe 'untag test' do
92
+ it 'should work' do
93
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
94
+ end
95
+ end
96
+
70
97
  end
@@ -58,7 +58,7 @@ describe 'RepositoriesContainerVersionsApi' do
58
58
 
59
59
  # unit tests for list
60
60
  # List repository versions
61
- # ContainerPushRepositoryVersion represents a single container push repository version.
61
+ # ContainerPushRepositoryVersion represents a single container push repository version. Repository versions of a push repository are not allowed to be deleted. Versioning of such repositories, as well as creation/removal, happens automatically without explicit user actions. Users could make a repository not functional by accident if allowed to delete repository versions.
62
62
  # @param container_container_push_repository_href
63
63
  # @param [Hash] opts the optional parameters
64
64
  # @option opts [String] :content content
@@ -120,7 +120,7 @@ describe 'RepositoriesContainerVersionsApi' do
120
120
 
121
121
  # unit tests for read
122
122
  # Inspect a repository version
123
- # ContainerPushRepositoryVersion represents a single container push repository version.
123
+ # ContainerPushRepositoryVersion represents a single container push repository version. Repository versions of a push repository are not allowed to be deleted. Versioning of such repositories, as well as creation/removal, happens automatically without explicit user actions. Users could make a repository not functional by accident if allowed to delete repository versions.
124
124
  # @param container_container_push_repository_version_href
125
125
  # @param [Hash] opts the optional parameters
126
126
  # @option opts [String] :fields A list of fields to include in the response.
@@ -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 "pulp_created"' do
35
+ describe 'test attribute "repository_version"' 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 "content_guard"' 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 "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 "repository"' do
53
+ describe 'test attribute "pulp_href"' 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 "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
63
63
  end
64
64
 
65
- describe 'test attribute "repository_version"' do
65
+ describe 'test attribute "pulp_labels"' 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 "content_guard"' do
71
+ describe 'test attribute "base_path"' 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 "repository"' 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
@@ -92,4 +92,16 @@ describe 'ContainerContainerDistributionResponse' do
92
92
  end
93
93
  end
94
94
 
95
+ describe 'test attribute "private"' do
96
+ it 'should work' do
97
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
+ end
99
+ end
100
+
101
+ describe 'test attribute "description"' do
102
+ it 'should work' do
103
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
+ end
105
+ end
106
+
95
107
  end
@@ -32,7 +32,19 @@ 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_version"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "content_guard"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "name"' do
36
48
  it 'should work' do
37
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
50
  end
@@ -44,25 +56,25 @@ describe 'ContainerContainerDistribution' do
44
56
  end
45
57
  end
46
58
 
47
- describe 'test attribute "repository"' do
59
+ describe 'test attribute "base_path"' do
48
60
  it 'should work' do
49
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
62
  end
51
63
  end
52
64
 
53
- describe 'test attribute "repository_version"' do
65
+ describe 'test attribute "repository"' do
54
66
  it 'should work' do
55
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
68
  end
57
69
  end
58
70
 
59
- describe 'test attribute "content_guard"' do
71
+ describe 'test attribute "private"' do
60
72
  it 'should work' do
61
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
74
  end
63
75
  end
64
76
 
65
- describe 'test attribute "name"' do
77
+ describe 'test attribute "description"' do
66
78
  it 'should work' do
67
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
80
  end
@@ -32,7 +32,19 @@ 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_version"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "content_guard"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "name"' do
36
48
  it 'should work' do
37
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
50
  end
@@ -44,25 +56,25 @@ describe 'PatchedcontainerContainerDistribution' do
44
56
  end
45
57
  end
46
58
 
47
- describe 'test attribute "repository"' do
59
+ describe 'test attribute "base_path"' do
48
60
  it 'should work' do
49
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
62
  end
51
63
  end
52
64
 
53
- describe 'test attribute "repository_version"' do
65
+ describe 'test attribute "repository"' do
54
66
  it 'should work' do
55
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
68
  end
57
69
  end
58
70
 
59
- describe 'test attribute "content_guard"' do
71
+ describe 'test attribute "private"' do
60
72
  it 'should work' do
61
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
74
  end
63
75
  end
64
76
 
65
- describe 'test attribute "name"' do
77
+ describe 'test attribute "description"' do
66
78
  it 'should work' do
67
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
80
  end