pulp_npm_client 0.1.0a1.dev01590542888 → 0.1.0a1.dev01591234165

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

Potentially problematic release.


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

Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -6
  3. data/docs/ContentPackagesApi.md +6 -6
  4. data/docs/DistributionsNpmApi.md +2 -2
  5. data/docs/InlineResponse200.md +1 -1
  6. data/docs/InlineResponse2001.md +1 -1
  7. data/docs/InlineResponse2002.md +1 -1
  8. data/docs/InlineResponse2003.md +1 -1
  9. data/docs/InlineResponse2004.md +1 -1
  10. data/docs/NpmNpmDistributionRead.md +31 -0
  11. data/docs/NpmNpmRemote.md +7 -3
  12. data/docs/NpmNpmRemoteRead.md +43 -0
  13. data/docs/NpmNpmRepositoryRead.md +27 -0
  14. data/docs/{NpmPackage.md → NpmPackageRead.md} +2 -2
  15. data/docs/RemotesNpmApi.md +4 -4
  16. data/docs/RepositoriesNpmApi.md +9 -9
  17. data/docs/RepositoriesNpmVersionsApi.md +2 -2
  18. data/docs/RepositoryVersionRead.md +25 -0
  19. data/lib/pulp_npm_client.rb +5 -1
  20. data/lib/pulp_npm_client/api/content_packages_api.rb +8 -8
  21. data/lib/pulp_npm_client/api/distributions_npm_api.rb +3 -3
  22. data/lib/pulp_npm_client/api/remotes_npm_api.rb +6 -6
  23. data/lib/pulp_npm_client/api/repositories_npm_api.rb +15 -15
  24. data/lib/pulp_npm_client/api/repositories_npm_versions_api.rb +3 -3
  25. data/lib/pulp_npm_client/models/inline_response200.rb +1 -1
  26. data/lib/pulp_npm_client/models/inline_response2001.rb +1 -1
  27. data/lib/pulp_npm_client/models/inline_response2002.rb +1 -1
  28. data/lib/pulp_npm_client/models/inline_response2003.rb +1 -1
  29. data/lib/pulp_npm_client/models/inline_response2004.rb +1 -1
  30. data/lib/pulp_npm_client/models/npm_npm_distribution_read.rb +342 -0
  31. data/lib/pulp_npm_client/models/npm_npm_remote.rb +56 -4
  32. data/lib/pulp_npm_client/models/npm_npm_remote_read.rb +531 -0
  33. data/lib/pulp_npm_client/models/npm_npm_repository_read.rb +294 -0
  34. data/lib/pulp_npm_client/models/{npm_package.rb → npm_package_read.rb} +3 -3
  35. data/lib/pulp_npm_client/models/repository_version_read.rb +244 -0
  36. data/lib/pulp_npm_client/version.rb +1 -1
  37. data/spec/api/content_packages_api_spec.rb +3 -3
  38. data/spec/api/distributions_npm_api_spec.rb +1 -1
  39. data/spec/api/remotes_npm_api_spec.rb +2 -2
  40. data/spec/api/repositories_npm_api_spec.rb +6 -6
  41. data/spec/api/repositories_npm_versions_api_spec.rb +1 -1
  42. data/spec/models/npm_npm_distribution_read_spec.rb +83 -0
  43. data/spec/models/npm_npm_remote_read_spec.rb +123 -0
  44. data/spec/models/npm_npm_remote_spec.rb +12 -0
  45. data/spec/models/npm_npm_repository_read_spec.rb +71 -0
  46. data/spec/models/{npm_package_spec.rb → npm_package_read_spec.rb} +6 -6
  47. data/spec/models/repository_version_read_spec.rb +65 -0
  48. metadata +22 -6
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.2.3
11
11
  =end
12
12
 
13
13
  module PulpNpmClient
14
- VERSION = '0.1.0a1.dev01590542888'
14
+ VERSION = '0.1.0a1.dev01591234165'
15
15
  end
@@ -40,9 +40,9 @@ describe 'ContentPackagesApi' do
40
40
  # @param version
41
41
  # @param [Hash] opts the optional parameters
42
42
  # @option opts [String] :artifact Artifact file representing the physical content
43
- # @option opts [File] :file An uploaded file that should be turned into the artifact of the content unit.
43
+ # @option opts [File] :file An uploaded file that may be turned into the artifact of the content unit.
44
44
  # @option opts [String] :repository A URI of a repository the new content unit should be associated with.
45
- # @return [NpmPackage]
45
+ # @return [NpmPackageRead]
46
46
  describe 'create test' do
47
47
  it 'should work' do
48
48
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -77,7 +77,7 @@ describe 'ContentPackagesApi' do
77
77
  # @param [Hash] opts the optional parameters
78
78
  # @option opts [String] :fields A list of fields to include in the response.
79
79
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
80
- # @return [NpmPackage]
80
+ # @return [NpmPackageRead]
81
81
  describe 'read test' do
82
82
  it 'should work' do
83
83
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -98,7 +98,7 @@ describe 'DistributionsNpmApi' do
98
98
  # @param [Hash] opts the optional parameters
99
99
  # @option opts [String] :fields A list of fields to include in the response.
100
100
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
101
- # @return [NpmNpmDistribution]
101
+ # @return [NpmNpmDistributionRead]
102
102
  describe 'read test' do
103
103
  it 'should work' do
104
104
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -37,7 +37,7 @@ describe 'RemotesNpmApi' do
37
37
  # Similar to the PackageViewSet above, define endpoint_name, queryset and serializer, at a minimum.
38
38
  # @param data
39
39
  # @param [Hash] opts the optional parameters
40
- # @return [NpmNpmRemote]
40
+ # @return [NpmNpmRemoteRead]
41
41
  describe 'create test' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -100,7 +100,7 @@ describe 'RemotesNpmApi' do
100
100
  # @param [Hash] opts the optional parameters
101
101
  # @option opts [String] :fields A list of fields to include in the response.
102
102
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
103
- # @return [NpmNpmRemote]
103
+ # @return [NpmNpmRemoteRead]
104
104
  describe 'read test' do
105
105
  it 'should work' do
106
106
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -37,7 +37,7 @@ describe 'RepositoriesNpmApi' do
37
37
  # Similar to the PackageViewSet above, define endpoint_name, queryset and serializer, at a minimum.
38
38
  # @param data
39
39
  # @param [Hash] opts the optional parameters
40
- # @return [NpmNpmRepository]
40
+ # @return [NpmNpmRepositoryRead]
41
41
  describe 'create test' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -46,7 +46,7 @@ describe 'RepositoriesNpmApi' do
46
46
 
47
47
  # unit tests for delete
48
48
  # Delete a npm repository
49
- # Trigger an asynchronous task to delete a repository.
49
+ # Trigger an asynchronous delete task
50
50
  # @param npm_repository_href URI of Npm Repository. e.g.: /pulp/api/v3/repositories/npm/npm/1/
51
51
  # @param [Hash] opts the optional parameters
52
52
  # @return [AsyncOperationResponse]
@@ -89,11 +89,11 @@ describe 'RepositoriesNpmApi' do
89
89
 
90
90
  # unit tests for partial_update
91
91
  # Partially update a npm repository
92
- # Similar to the PackageViewSet above, define endpoint_name, queryset and serializer, at a minimum.
92
+ # Trigger an asynchronous partial update task
93
93
  # @param npm_repository_href URI of Npm Repository. e.g.: /pulp/api/v3/repositories/npm/npm/1/
94
94
  # @param data
95
95
  # @param [Hash] opts the optional parameters
96
- # @return [NpmNpmRepository]
96
+ # @return [AsyncOperationResponse]
97
97
  describe 'partial_update test' do
98
98
  it 'should work' do
99
99
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -107,7 +107,7 @@ describe 'RepositoriesNpmApi' do
107
107
  # @param [Hash] opts the optional parameters
108
108
  # @option opts [String] :fields A list of fields to include in the response.
109
109
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
110
- # @return [NpmNpmRepository]
110
+ # @return [NpmNpmRepositoryRead]
111
111
  describe 'read test' do
112
112
  it 'should work' do
113
113
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -129,7 +129,7 @@ describe 'RepositoriesNpmApi' do
129
129
 
130
130
  # unit tests for update
131
131
  # Update a npm repository
132
- # Trigger an asynchronous task to update a repository.
132
+ # Trigger an asynchronous update task
133
133
  # @param npm_repository_href URI of Npm Repository. e.g.: /pulp/api/v3/repositories/npm/npm/1/
134
134
  # @param data
135
135
  # @param [Hash] opts the optional parameters
@@ -81,7 +81,7 @@ describe 'RepositoriesNpmVersionsApi' do
81
81
  # @param [Hash] opts the optional parameters
82
82
  # @option opts [String] :fields A list of fields to include in the response.
83
83
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
84
- # @return [RepositoryVersion]
84
+ # @return [RepositoryVersionRead]
85
85
  describe 'read test' do
86
86
  it 'should work' do
87
87
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,83 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v3
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.3
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpNpmClient::NpmNpmDistributionRead
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'NpmNpmDistributionRead' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpNpmClient::NpmNpmDistributionRead.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of NpmNpmDistributionRead' do
31
+ it 'should create an instance of NpmNpmDistributionRead' do
32
+ expect(@instance).to be_instance_of(PulpNpmClient::NpmNpmDistributionRead)
33
+ end
34
+ end
35
+ describe 'test attribute "pulp_href"' 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 "pulp_created"' 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 "base_path"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "base_url"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "content_guard"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "name"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ describe 'test attribute "repository"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
77
+ describe 'test attribute "repository_version"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ end
@@ -0,0 +1,123 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v3
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.3
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpNpmClient::NpmNpmRemoteRead
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'NpmNpmRemoteRead' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpNpmClient::NpmNpmRemoteRead.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of NpmNpmRemoteRead' do
31
+ it 'should create an instance of NpmNpmRemoteRead' do
32
+ expect(@instance).to be_instance_of(PulpNpmClient::NpmNpmRemoteRead)
33
+ end
34
+ end
35
+ describe 'test attribute "pulp_href"' 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 "pulp_created"' 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
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "url"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "ca_cert"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "client_cert"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ describe 'test attribute "client_key"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
77
+ describe 'test attribute "tls_validation"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "proxy_url"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
89
+ describe 'test attribute "username"' do
90
+ it 'should work' do
91
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
+ end
93
+ end
94
+
95
+ describe 'test attribute "password"' 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 "pulp_last_updated"' 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
+
107
+ describe 'test attribute "download_concurrency"' do
108
+ it 'should work' do
109
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
+ end
111
+ end
112
+
113
+ describe 'test attribute "policy"' do
114
+ it 'should work' do
115
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["immediate", "on_demand", "streamed"])
117
+ # validator.allowable_values.each do |value|
118
+ # expect { @instance.policy = value }.not_to raise_error
119
+ # end
120
+ end
121
+ end
122
+
123
+ end
@@ -86,6 +86,18 @@ describe 'NpmNpmRemote' do
86
86
  end
87
87
  end
88
88
 
89
+ describe 'test attribute "username"' do
90
+ it 'should work' do
91
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
+ end
93
+ end
94
+
95
+ describe 'test attribute "password"' 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
+
89
101
  describe 'test attribute "pulp_last_updated"' do
90
102
  it 'should work' do
91
103
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,71 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v3
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.3
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpNpmClient::NpmNpmRepositoryRead
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'NpmNpmRepositoryRead' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpNpmClient::NpmNpmRepositoryRead.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of NpmNpmRepositoryRead' do
31
+ it 'should create an instance of NpmNpmRepositoryRead' do
32
+ expect(@instance).to be_instance_of(PulpNpmClient::NpmNpmRepositoryRead)
33
+ end
34
+ end
35
+ describe 'test attribute "pulp_href"' 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 "pulp_created"' 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 "versions_href"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "latest_version_href"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "name"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "description"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ end
@@ -14,22 +14,22 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for PulpNpmClient::NpmPackage
17
+ # Unit tests for PulpNpmClient::NpmPackageRead
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe 'NpmPackage' do
20
+ describe 'NpmPackageRead' do
21
21
  before do
22
22
  # run before each test
23
- @instance = PulpNpmClient::NpmPackage.new
23
+ @instance = PulpNpmClient::NpmPackageRead.new
24
24
  end
25
25
 
26
26
  after do
27
27
  # run after each test
28
28
  end
29
29
 
30
- describe 'test an instance of NpmPackage' do
31
- it 'should create an instance of NpmPackage' do
32
- expect(@instance).to be_instance_of(PulpNpmClient::NpmPackage)
30
+ describe 'test an instance of NpmPackageRead' do
31
+ it 'should create an instance of NpmPackageRead' do
32
+ expect(@instance).to be_instance_of(PulpNpmClient::NpmPackageRead)
33
33
  end
34
34
  end
35
35
  describe 'test attribute "pulp_href"' do
@@ -0,0 +1,65 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v3
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.3
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpNpmClient::RepositoryVersionRead
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'RepositoryVersionRead' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpNpmClient::RepositoryVersionRead.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of RepositoryVersionRead' do
31
+ it 'should create an instance of RepositoryVersionRead' do
32
+ expect(@instance).to be_instance_of(PulpNpmClient::RepositoryVersionRead)
33
+ end
34
+ end
35
+ describe 'test attribute "pulp_href"' 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 "pulp_created"' 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 "number"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "base_version"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "content_summary"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ end