cloudsmith-api 2.0.12 → 2.0.13
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +14 -5
- data/build.json +1 -1
- data/docs/AlpinePackageUpload.md +7 -0
- data/docs/CargoPackageUpload.md +7 -0
- data/docs/CocoapodsPackageUpload.md +7 -0
- data/docs/ComposerPackageUpload.md +7 -0
- data/docs/ConanPackageUpload.md +7 -0
- data/docs/CondaPackageUpload.md +7 -0
- data/docs/CranPackageUpload.md +7 -0
- data/docs/DartPackageUpload.md +7 -0
- data/docs/DebPackageUpload.md +7 -0
- data/docs/DockerPackageUpload.md +7 -0
- data/docs/GoPackageUpload.md +7 -0
- data/docs/HelmPackageUpload.md +7 -0
- data/docs/HexPackageUpload.md +7 -0
- data/docs/LuarocksPackageUpload.md +7 -0
- data/docs/MavenPackageUpload.md +7 -0
- data/docs/NpmPackageUpload.md +7 -0
- data/docs/NugetPackageUpload.md +7 -0
- data/docs/OrganizationMembership.md +1 -1
- data/docs/OrgsApi.md +358 -0
- data/docs/P2PackageUpload.md +7 -0
- data/docs/Package.md +7 -0
- data/docs/PackageCopy.md +7 -0
- data/docs/PackageMove.md +7 -0
- data/docs/PackageQuarantine.md +7 -0
- data/docs/PackageResync.md +7 -0
- data/docs/PackageStatus.md +7 -0
- data/docs/PackageTag.md +7 -0
- data/docs/PackagesApi.md +4 -4
- data/docs/ProviderSettings.md +14 -0
- data/docs/ProviderSettingsRequest.md +12 -0
- data/docs/ProviderSettingsRequestPatch.md +12 -0
- data/docs/PythonPackageUpload.md +7 -0
- data/docs/RawPackageUpload.md +7 -0
- data/docs/RpmPackageUpload.md +7 -0
- data/docs/RubyPackageUpload.md +7 -0
- data/docs/StatusBasic.md +1 -1
- data/docs/SwiftPackageUpload.md +7 -0
- data/docs/TerraformPackageUpload.md +7 -0
- data/docs/VagrantPackageUpload.md +7 -0
- data/lib/cloudsmith-api/api/orgs_api.rb +358 -0
- data/lib/cloudsmith-api/api/packages_api.rb +4 -4
- data/lib/cloudsmith-api/models/alpine_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/cargo_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/cocoapods_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/composer_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/conan_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/conda_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/cran_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/dart_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/deb_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/docker_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/go_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/helm_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/hex_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/luarocks_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/maven_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/npm_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/nuget_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/organization_membership.rb +1 -1
- data/lib/cloudsmith-api/models/p2_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/package.rb +64 -1
- data/lib/cloudsmith-api/models/package_copy.rb +64 -1
- data/lib/cloudsmith-api/models/package_move.rb +64 -1
- data/lib/cloudsmith-api/models/package_quarantine.rb +64 -1
- data/lib/cloudsmith-api/models/package_resync.rb +64 -1
- data/lib/cloudsmith-api/models/package_status.rb +64 -1
- data/lib/cloudsmith-api/models/package_tag.rb +64 -1
- data/lib/cloudsmith-api/models/provider_settings.rb +272 -0
- data/lib/cloudsmith-api/models/provider_settings_request.rb +252 -0
- data/lib/cloudsmith-api/models/provider_settings_request_patch.rb +227 -0
- data/lib/cloudsmith-api/models/python_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/raw_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/rpm_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/ruby_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/status_basic.rb +1 -1
- data/lib/cloudsmith-api/models/swift_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/terraform_package_upload.rb +64 -1
- data/lib/cloudsmith-api/models/vagrant_package_upload.rb +64 -1
- data/lib/cloudsmith-api/version.rb +1 -1
- data/lib/cloudsmith-api.rb +3 -0
- data/spec/api/orgs_api_spec.rb +81 -0
- data/spec/api/packages_api_spec.rb +2 -2
- data/spec/models/alpine_package_upload_spec.rb +42 -0
- data/spec/models/cargo_package_upload_spec.rb +42 -0
- data/spec/models/cocoapods_package_upload_spec.rb +42 -0
- data/spec/models/composer_package_upload_spec.rb +42 -0
- data/spec/models/conan_package_upload_spec.rb +42 -0
- data/spec/models/conda_package_upload_spec.rb +42 -0
- data/spec/models/cran_package_upload_spec.rb +42 -0
- data/spec/models/dart_package_upload_spec.rb +42 -0
- data/spec/models/deb_package_upload_spec.rb +42 -0
- data/spec/models/docker_package_upload_spec.rb +42 -0
- data/spec/models/go_package_upload_spec.rb +42 -0
- data/spec/models/helm_package_upload_spec.rb +42 -0
- data/spec/models/hex_package_upload_spec.rb +42 -0
- data/spec/models/luarocks_package_upload_spec.rb +42 -0
- data/spec/models/maven_package_upload_spec.rb +42 -0
- data/spec/models/npm_package_upload_spec.rb +42 -0
- data/spec/models/nuget_package_upload_spec.rb +42 -0
- data/spec/models/p2_package_upload_spec.rb +42 -0
- data/spec/models/package_copy_spec.rb +42 -0
- data/spec/models/package_move_spec.rb +42 -0
- data/spec/models/package_quarantine_spec.rb +42 -0
- data/spec/models/package_resync_spec.rb +42 -0
- data/spec/models/package_spec.rb +42 -0
- data/spec/models/package_status_spec.rb +42 -0
- data/spec/models/package_tag_spec.rb +42 -0
- data/spec/models/provider_settings_request_patch_spec.rb +65 -0
- data/spec/models/provider_settings_request_spec.rb +65 -0
- data/spec/models/provider_settings_spec.rb +77 -0
- data/spec/models/python_package_upload_spec.rb +42 -0
- data/spec/models/raw_package_upload_spec.rb +42 -0
- data/spec/models/rpm_package_upload_spec.rb +42 -0
- data/spec/models/ruby_package_upload_spec.rb +42 -0
- data/spec/models/swift_package_upload_spec.rb +42 -0
- data/spec/models/terraform_package_upload_spec.rb +42 -0
- data/spec/models/vagrant_package_upload_spec.rb +42 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.2.21/gem_make.out +1 -1
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/bigdecimal-3.1.7/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/bigdecimal-3.1.7/mkmf.log +5 -5
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.16.3/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.16.3/mkmf.log +1 -1
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.7.2/gem_make.out +1 -1
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.7.2/mkmf.log +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/bigdecimal-3.1.7/ext/bigdecimal/Makefile +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.16.3/ext/ffi_c/Makefile +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/json-2.7.2/ext/json/Makefile +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/json-2.7.2/ext/json/ext/generator/Makefile +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/json-2.7.2/ext/json/ext/parser/Makefile +2 -2
- metadata +15 -3
|
@@ -152,18 +152,60 @@ describe 'DartPackageUpload' do
|
|
|
152
152
|
end
|
|
153
153
|
end
|
|
154
154
|
|
|
155
|
+
describe 'test attribute "is_cancellable"' do
|
|
156
|
+
it 'should work' do
|
|
157
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
describe 'test attribute "is_copyable"' do
|
|
162
|
+
it 'should work' do
|
|
163
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
describe 'test attribute "is_deleteable"' do
|
|
168
|
+
it 'should work' do
|
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
155
173
|
describe 'test attribute "is_downloadable"' do
|
|
156
174
|
it 'should work' do
|
|
157
175
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
176
|
end
|
|
159
177
|
end
|
|
160
178
|
|
|
179
|
+
describe 'test attribute "is_moveable"' do
|
|
180
|
+
it 'should work' do
|
|
181
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
describe 'test attribute "is_quarantinable"' do
|
|
186
|
+
it 'should work' do
|
|
187
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
|
|
161
191
|
describe 'test attribute "is_quarantined"' do
|
|
162
192
|
it 'should work' do
|
|
163
193
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
194
|
end
|
|
165
195
|
end
|
|
166
196
|
|
|
197
|
+
describe 'test attribute "is_resyncable"' do
|
|
198
|
+
it 'should work' do
|
|
199
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
describe 'test attribute "is_security_scannable"' do
|
|
204
|
+
it 'should work' do
|
|
205
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
206
|
+
end
|
|
207
|
+
end
|
|
208
|
+
|
|
167
209
|
describe 'test attribute "is_sync_awaiting"' do
|
|
168
210
|
it 'should work' do
|
|
169
211
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -152,18 +152,60 @@ describe 'DebPackageUpload' do
|
|
|
152
152
|
end
|
|
153
153
|
end
|
|
154
154
|
|
|
155
|
+
describe 'test attribute "is_cancellable"' do
|
|
156
|
+
it 'should work' do
|
|
157
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
describe 'test attribute "is_copyable"' do
|
|
162
|
+
it 'should work' do
|
|
163
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
describe 'test attribute "is_deleteable"' do
|
|
168
|
+
it 'should work' do
|
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
155
173
|
describe 'test attribute "is_downloadable"' do
|
|
156
174
|
it 'should work' do
|
|
157
175
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
176
|
end
|
|
159
177
|
end
|
|
160
178
|
|
|
179
|
+
describe 'test attribute "is_moveable"' do
|
|
180
|
+
it 'should work' do
|
|
181
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
describe 'test attribute "is_quarantinable"' do
|
|
186
|
+
it 'should work' do
|
|
187
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
|
|
161
191
|
describe 'test attribute "is_quarantined"' do
|
|
162
192
|
it 'should work' do
|
|
163
193
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
194
|
end
|
|
165
195
|
end
|
|
166
196
|
|
|
197
|
+
describe 'test attribute "is_resyncable"' do
|
|
198
|
+
it 'should work' do
|
|
199
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
describe 'test attribute "is_security_scannable"' do
|
|
204
|
+
it 'should work' do
|
|
205
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
206
|
+
end
|
|
207
|
+
end
|
|
208
|
+
|
|
167
209
|
describe 'test attribute "is_sync_awaiting"' do
|
|
168
210
|
it 'should work' do
|
|
169
211
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -152,18 +152,60 @@ describe 'DockerPackageUpload' do
|
|
|
152
152
|
end
|
|
153
153
|
end
|
|
154
154
|
|
|
155
|
+
describe 'test attribute "is_cancellable"' do
|
|
156
|
+
it 'should work' do
|
|
157
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
describe 'test attribute "is_copyable"' do
|
|
162
|
+
it 'should work' do
|
|
163
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
describe 'test attribute "is_deleteable"' do
|
|
168
|
+
it 'should work' do
|
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
155
173
|
describe 'test attribute "is_downloadable"' do
|
|
156
174
|
it 'should work' do
|
|
157
175
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
176
|
end
|
|
159
177
|
end
|
|
160
178
|
|
|
179
|
+
describe 'test attribute "is_moveable"' do
|
|
180
|
+
it 'should work' do
|
|
181
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
describe 'test attribute "is_quarantinable"' do
|
|
186
|
+
it 'should work' do
|
|
187
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
|
|
161
191
|
describe 'test attribute "is_quarantined"' do
|
|
162
192
|
it 'should work' do
|
|
163
193
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
194
|
end
|
|
165
195
|
end
|
|
166
196
|
|
|
197
|
+
describe 'test attribute "is_resyncable"' do
|
|
198
|
+
it 'should work' do
|
|
199
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
describe 'test attribute "is_security_scannable"' do
|
|
204
|
+
it 'should work' do
|
|
205
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
206
|
+
end
|
|
207
|
+
end
|
|
208
|
+
|
|
167
209
|
describe 'test attribute "is_sync_awaiting"' do
|
|
168
210
|
it 'should work' do
|
|
169
211
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -152,18 +152,60 @@ describe 'GoPackageUpload' do
|
|
|
152
152
|
end
|
|
153
153
|
end
|
|
154
154
|
|
|
155
|
+
describe 'test attribute "is_cancellable"' do
|
|
156
|
+
it 'should work' do
|
|
157
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
describe 'test attribute "is_copyable"' do
|
|
162
|
+
it 'should work' do
|
|
163
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
describe 'test attribute "is_deleteable"' do
|
|
168
|
+
it 'should work' do
|
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
155
173
|
describe 'test attribute "is_downloadable"' do
|
|
156
174
|
it 'should work' do
|
|
157
175
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
176
|
end
|
|
159
177
|
end
|
|
160
178
|
|
|
179
|
+
describe 'test attribute "is_moveable"' do
|
|
180
|
+
it 'should work' do
|
|
181
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
describe 'test attribute "is_quarantinable"' do
|
|
186
|
+
it 'should work' do
|
|
187
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
|
|
161
191
|
describe 'test attribute "is_quarantined"' do
|
|
162
192
|
it 'should work' do
|
|
163
193
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
194
|
end
|
|
165
195
|
end
|
|
166
196
|
|
|
197
|
+
describe 'test attribute "is_resyncable"' do
|
|
198
|
+
it 'should work' do
|
|
199
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
describe 'test attribute "is_security_scannable"' do
|
|
204
|
+
it 'should work' do
|
|
205
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
206
|
+
end
|
|
207
|
+
end
|
|
208
|
+
|
|
167
209
|
describe 'test attribute "is_sync_awaiting"' do
|
|
168
210
|
it 'should work' do
|
|
169
211
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -152,18 +152,60 @@ describe 'HelmPackageUpload' do
|
|
|
152
152
|
end
|
|
153
153
|
end
|
|
154
154
|
|
|
155
|
+
describe 'test attribute "is_cancellable"' do
|
|
156
|
+
it 'should work' do
|
|
157
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
describe 'test attribute "is_copyable"' do
|
|
162
|
+
it 'should work' do
|
|
163
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
describe 'test attribute "is_deleteable"' do
|
|
168
|
+
it 'should work' do
|
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
155
173
|
describe 'test attribute "is_downloadable"' do
|
|
156
174
|
it 'should work' do
|
|
157
175
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
176
|
end
|
|
159
177
|
end
|
|
160
178
|
|
|
179
|
+
describe 'test attribute "is_moveable"' do
|
|
180
|
+
it 'should work' do
|
|
181
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
describe 'test attribute "is_quarantinable"' do
|
|
186
|
+
it 'should work' do
|
|
187
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
|
|
161
191
|
describe 'test attribute "is_quarantined"' do
|
|
162
192
|
it 'should work' do
|
|
163
193
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
194
|
end
|
|
165
195
|
end
|
|
166
196
|
|
|
197
|
+
describe 'test attribute "is_resyncable"' do
|
|
198
|
+
it 'should work' do
|
|
199
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
describe 'test attribute "is_security_scannable"' do
|
|
204
|
+
it 'should work' do
|
|
205
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
206
|
+
end
|
|
207
|
+
end
|
|
208
|
+
|
|
167
209
|
describe 'test attribute "is_sync_awaiting"' do
|
|
168
210
|
it 'should work' do
|
|
169
211
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -152,18 +152,60 @@ describe 'HexPackageUpload' do
|
|
|
152
152
|
end
|
|
153
153
|
end
|
|
154
154
|
|
|
155
|
+
describe 'test attribute "is_cancellable"' do
|
|
156
|
+
it 'should work' do
|
|
157
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
describe 'test attribute "is_copyable"' do
|
|
162
|
+
it 'should work' do
|
|
163
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
describe 'test attribute "is_deleteable"' do
|
|
168
|
+
it 'should work' do
|
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
155
173
|
describe 'test attribute "is_downloadable"' do
|
|
156
174
|
it 'should work' do
|
|
157
175
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
176
|
end
|
|
159
177
|
end
|
|
160
178
|
|
|
179
|
+
describe 'test attribute "is_moveable"' do
|
|
180
|
+
it 'should work' do
|
|
181
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
describe 'test attribute "is_quarantinable"' do
|
|
186
|
+
it 'should work' do
|
|
187
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
|
|
161
191
|
describe 'test attribute "is_quarantined"' do
|
|
162
192
|
it 'should work' do
|
|
163
193
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
194
|
end
|
|
165
195
|
end
|
|
166
196
|
|
|
197
|
+
describe 'test attribute "is_resyncable"' do
|
|
198
|
+
it 'should work' do
|
|
199
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
describe 'test attribute "is_security_scannable"' do
|
|
204
|
+
it 'should work' do
|
|
205
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
206
|
+
end
|
|
207
|
+
end
|
|
208
|
+
|
|
167
209
|
describe 'test attribute "is_sync_awaiting"' do
|
|
168
210
|
it 'should work' do
|
|
169
211
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -152,18 +152,60 @@ describe 'LuarocksPackageUpload' do
|
|
|
152
152
|
end
|
|
153
153
|
end
|
|
154
154
|
|
|
155
|
+
describe 'test attribute "is_cancellable"' do
|
|
156
|
+
it 'should work' do
|
|
157
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
describe 'test attribute "is_copyable"' do
|
|
162
|
+
it 'should work' do
|
|
163
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
describe 'test attribute "is_deleteable"' do
|
|
168
|
+
it 'should work' do
|
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
155
173
|
describe 'test attribute "is_downloadable"' do
|
|
156
174
|
it 'should work' do
|
|
157
175
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
176
|
end
|
|
159
177
|
end
|
|
160
178
|
|
|
179
|
+
describe 'test attribute "is_moveable"' do
|
|
180
|
+
it 'should work' do
|
|
181
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
describe 'test attribute "is_quarantinable"' do
|
|
186
|
+
it 'should work' do
|
|
187
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
|
|
161
191
|
describe 'test attribute "is_quarantined"' do
|
|
162
192
|
it 'should work' do
|
|
163
193
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
194
|
end
|
|
165
195
|
end
|
|
166
196
|
|
|
197
|
+
describe 'test attribute "is_resyncable"' do
|
|
198
|
+
it 'should work' do
|
|
199
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
describe 'test attribute "is_security_scannable"' do
|
|
204
|
+
it 'should work' do
|
|
205
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
206
|
+
end
|
|
207
|
+
end
|
|
208
|
+
|
|
167
209
|
describe 'test attribute "is_sync_awaiting"' do
|
|
168
210
|
it 'should work' do
|
|
169
211
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -164,18 +164,60 @@ describe 'MavenPackageUpload' do
|
|
|
164
164
|
end
|
|
165
165
|
end
|
|
166
166
|
|
|
167
|
+
describe 'test attribute "is_cancellable"' do
|
|
168
|
+
it 'should work' do
|
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
describe 'test attribute "is_copyable"' do
|
|
174
|
+
it 'should work' do
|
|
175
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
176
|
+
end
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
describe 'test attribute "is_deleteable"' do
|
|
180
|
+
it 'should work' do
|
|
181
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
|
|
167
185
|
describe 'test attribute "is_downloadable"' do
|
|
168
186
|
it 'should work' do
|
|
169
187
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
170
188
|
end
|
|
171
189
|
end
|
|
172
190
|
|
|
191
|
+
describe 'test attribute "is_moveable"' do
|
|
192
|
+
it 'should work' do
|
|
193
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
194
|
+
end
|
|
195
|
+
end
|
|
196
|
+
|
|
197
|
+
describe 'test attribute "is_quarantinable"' do
|
|
198
|
+
it 'should work' do
|
|
199
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
|
|
173
203
|
describe 'test attribute "is_quarantined"' do
|
|
174
204
|
it 'should work' do
|
|
175
205
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
176
206
|
end
|
|
177
207
|
end
|
|
178
208
|
|
|
209
|
+
describe 'test attribute "is_resyncable"' do
|
|
210
|
+
it 'should work' do
|
|
211
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
212
|
+
end
|
|
213
|
+
end
|
|
214
|
+
|
|
215
|
+
describe 'test attribute "is_security_scannable"' do
|
|
216
|
+
it 'should work' do
|
|
217
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
218
|
+
end
|
|
219
|
+
end
|
|
220
|
+
|
|
179
221
|
describe 'test attribute "is_sync_awaiting"' do
|
|
180
222
|
it 'should work' do
|
|
181
223
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -152,18 +152,60 @@ describe 'NpmPackageUpload' do
|
|
|
152
152
|
end
|
|
153
153
|
end
|
|
154
154
|
|
|
155
|
+
describe 'test attribute "is_cancellable"' do
|
|
156
|
+
it 'should work' do
|
|
157
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
describe 'test attribute "is_copyable"' do
|
|
162
|
+
it 'should work' do
|
|
163
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
describe 'test attribute "is_deleteable"' do
|
|
168
|
+
it 'should work' do
|
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
155
173
|
describe 'test attribute "is_downloadable"' do
|
|
156
174
|
it 'should work' do
|
|
157
175
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
176
|
end
|
|
159
177
|
end
|
|
160
178
|
|
|
179
|
+
describe 'test attribute "is_moveable"' do
|
|
180
|
+
it 'should work' do
|
|
181
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
describe 'test attribute "is_quarantinable"' do
|
|
186
|
+
it 'should work' do
|
|
187
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
|
|
161
191
|
describe 'test attribute "is_quarantined"' do
|
|
162
192
|
it 'should work' do
|
|
163
193
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
194
|
end
|
|
165
195
|
end
|
|
166
196
|
|
|
197
|
+
describe 'test attribute "is_resyncable"' do
|
|
198
|
+
it 'should work' do
|
|
199
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
describe 'test attribute "is_security_scannable"' do
|
|
204
|
+
it 'should work' do
|
|
205
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
206
|
+
end
|
|
207
|
+
end
|
|
208
|
+
|
|
167
209
|
describe 'test attribute "is_sync_awaiting"' do
|
|
168
210
|
it 'should work' do
|
|
169
211
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -152,18 +152,60 @@ describe 'NugetPackageUpload' do
|
|
|
152
152
|
end
|
|
153
153
|
end
|
|
154
154
|
|
|
155
|
+
describe 'test attribute "is_cancellable"' do
|
|
156
|
+
it 'should work' do
|
|
157
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
describe 'test attribute "is_copyable"' do
|
|
162
|
+
it 'should work' do
|
|
163
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
describe 'test attribute "is_deleteable"' do
|
|
168
|
+
it 'should work' do
|
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
155
173
|
describe 'test attribute "is_downloadable"' do
|
|
156
174
|
it 'should work' do
|
|
157
175
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
176
|
end
|
|
159
177
|
end
|
|
160
178
|
|
|
179
|
+
describe 'test attribute "is_moveable"' do
|
|
180
|
+
it 'should work' do
|
|
181
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
describe 'test attribute "is_quarantinable"' do
|
|
186
|
+
it 'should work' do
|
|
187
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
|
|
161
191
|
describe 'test attribute "is_quarantined"' do
|
|
162
192
|
it 'should work' do
|
|
163
193
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
194
|
end
|
|
165
195
|
end
|
|
166
196
|
|
|
197
|
+
describe 'test attribute "is_resyncable"' do
|
|
198
|
+
it 'should work' do
|
|
199
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
describe 'test attribute "is_security_scannable"' do
|
|
204
|
+
it 'should work' do
|
|
205
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
206
|
+
end
|
|
207
|
+
end
|
|
208
|
+
|
|
167
209
|
describe 'test attribute "is_sync_awaiting"' do
|
|
168
210
|
it 'should work' do
|
|
169
211
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -152,18 +152,60 @@ describe 'P2PackageUpload' do
|
|
|
152
152
|
end
|
|
153
153
|
end
|
|
154
154
|
|
|
155
|
+
describe 'test attribute "is_cancellable"' do
|
|
156
|
+
it 'should work' do
|
|
157
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
describe 'test attribute "is_copyable"' do
|
|
162
|
+
it 'should work' do
|
|
163
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
describe 'test attribute "is_deleteable"' do
|
|
168
|
+
it 'should work' do
|
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
155
173
|
describe 'test attribute "is_downloadable"' do
|
|
156
174
|
it 'should work' do
|
|
157
175
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
176
|
end
|
|
159
177
|
end
|
|
160
178
|
|
|
179
|
+
describe 'test attribute "is_moveable"' do
|
|
180
|
+
it 'should work' do
|
|
181
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
describe 'test attribute "is_quarantinable"' do
|
|
186
|
+
it 'should work' do
|
|
187
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
|
|
161
191
|
describe 'test attribute "is_quarantined"' do
|
|
162
192
|
it 'should work' do
|
|
163
193
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
194
|
end
|
|
165
195
|
end
|
|
166
196
|
|
|
197
|
+
describe 'test attribute "is_resyncable"' do
|
|
198
|
+
it 'should work' do
|
|
199
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
describe 'test attribute "is_security_scannable"' do
|
|
204
|
+
it 'should work' do
|
|
205
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
206
|
+
end
|
|
207
|
+
end
|
|
208
|
+
|
|
167
209
|
describe 'test attribute "is_sync_awaiting"' do
|
|
168
210
|
it 'should work' do
|
|
169
211
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|