spec/api/repos_api_spec.rb in cloudsmith-api-2.0.7 vs spec/api/repos_api_spec.rb in cloudsmith-api-2.0.8
- old
+ new
@@ -303,9 +303,96 @@
it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
end
end
+ # unit tests for repos_upstream_cran_create
+ # Create a CRAN upstream config for this repository.
+ # Create a CRAN upstream config for this repository.
+ # @param owner
+ # @param identifier
+ # @param [Hash] opts the optional parameters
+ # @option opts [CranUpstreamRequest] :data
+ # @return [CranUpstream]
+ describe 'repos_upstream_cran_create test' do
+ it 'should work' do
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
+ end
+ end
+
+ # unit tests for repos_upstream_cran_delete
+ # Delete a CRAN upstream config for this repository.
+ # Delete a CRAN upstream config for this repository.
+ # @param owner
+ # @param identifier
+ # @param slug_perm
+ # @param [Hash] opts the optional parameters
+ # @return [nil]
+ describe 'repos_upstream_cran_delete test' do
+ it 'should work' do
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
+ end
+ end
+
+ # unit tests for repos_upstream_cran_list
+ # List CRAN upstream configs for this repository.
+ # List CRAN upstream configs for this repository.
+ # @param owner
+ # @param identifier
+ # @param [Hash] opts the optional parameters
+ # @option opts [Integer] :page A page number within the paginated result set.
+ # @option opts [Integer] :page_size Number of results to return per page.
+ # @return [Array<CranUpstream>]
+ describe 'repos_upstream_cran_list test' do
+ it 'should work' do
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
+ end
+ end
+
+ # unit tests for repos_upstream_cran_partial_update
+ # Partially update a CRAN upstream config for this repository.
+ # Partially update a CRAN upstream config for this repository.
+ # @param owner
+ # @param identifier
+ # @param slug_perm
+ # @param [Hash] opts the optional parameters
+ # @option opts [CranUpstreamRequestPatch] :data
+ # @return [CranUpstream]
+ describe 'repos_upstream_cran_partial_update test' do
+ it 'should work' do
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
+ end
+ end
+
+ # unit tests for repos_upstream_cran_read
+ # Retrieve a CRAN upstream config for this repository.
+ # Retrieve a CRAN upstream config for this repository.
+ # @param owner
+ # @param identifier
+ # @param slug_perm
+ # @param [Hash] opts the optional parameters
+ # @return [CranUpstream]
+ describe 'repos_upstream_cran_read test' do
+ it 'should work' do
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
+ end
+ end
+
+ # unit tests for repos_upstream_cran_update
+ # Update a CRAN upstream config for this repository.
+ # Update a CRAN upstream config for this repository.
+ # @param owner
+ # @param identifier
+ # @param slug_perm
+ # @param [Hash] opts the optional parameters
+ # @option opts [CranUpstreamRequest] :data
+ # @return [CranUpstream]
+ describe 'repos_upstream_cran_update test' do
+ it 'should work' do
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
+ end
+ end
+
# unit tests for repos_upstream_dart_create
# Create a Dart upstream config for this repository.
# Create a Dart upstream config for this repository.
# @param owner
# @param identifier