spec/api/repos_api_spec.rb in cloudsmith-api-2.0.6 vs spec/api/repos_api_spec.rb in cloudsmith-api-2.0.7

- old
+ new

@@ -303,9 +303,879 @@ 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 + # @param [Hash] opts the optional parameters + # @option opts [DartUpstreamRequest] :data + # @return [DartUpstream] + describe 'repos_upstream_dart_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_dart_delete + # Delete a Dart upstream config for this repository. + # Delete a Dart upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [nil] + describe 'repos_upstream_dart_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_dart_list + # List Dart upstream configs for this repository. + # List Dart 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<DartUpstream>] + describe 'repos_upstream_dart_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_dart_partial_update + # Partially update a Dart upstream config for this repository. + # Partially update a Dart upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [DartUpstreamRequestPatch] :data + # @return [DartUpstream] + describe 'repos_upstream_dart_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_dart_read + # Retrieve a Dart upstream config for this repository. + # Retrieve a Dart upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [DartUpstream] + describe 'repos_upstream_dart_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_dart_update + # Update a Dart upstream config for this repository. + # Update a Dart upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [DartUpstreamRequest] :data + # @return [DartUpstream] + describe 'repos_upstream_dart_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_deb_create + # Create a Debian upstream config for this repository. + # Create a Debian upstream config for this repository. + # @param owner + # @param identifier + # @param [Hash] opts the optional parameters + # @option opts [DebUpstreamRequest] :data + # @return [DebUpstream] + describe 'repos_upstream_deb_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_deb_delete + # Delete a Debian upstream config for this repository. + # Delete a Debian upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [nil] + describe 'repos_upstream_deb_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_deb_list + # List Debian upstream configs for this repository. + # List Debian 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<DebUpstream>] + describe 'repos_upstream_deb_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_deb_partial_update + # Partially update a Debian upstream config for this repository. + # Partially update a Debian upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [DebUpstreamRequestPatch] :data + # @return [DebUpstream] + describe 'repos_upstream_deb_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_deb_read + # Retrieve a Debian upstream config for this repository. + # Retrieve a Debian upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [DebUpstream] + describe 'repos_upstream_deb_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_deb_update + # Update a Debian upstream config for this repository. + # Update a Debian upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [DebUpstreamRequest] :data + # @return [DebUpstream] + describe 'repos_upstream_deb_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_docker_create + # Create a Docker upstream config for this repository. + # Create a Docker upstream config for this repository. + # @param owner + # @param identifier + # @param [Hash] opts the optional parameters + # @option opts [DockerUpstreamRequest] :data + # @return [DockerUpstream] + describe 'repos_upstream_docker_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_docker_delete + # Delete a Docker upstream config for this repository. + # Delete a Docker upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [nil] + describe 'repos_upstream_docker_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_docker_list + # List Docker upstream configs for this repository. + # List Docker 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<DockerUpstream>] + describe 'repos_upstream_docker_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_docker_partial_update + # Partially update a Docker upstream config for this repository. + # Partially update a Docker upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [DockerUpstreamRequestPatch] :data + # @return [DockerUpstream] + describe 'repos_upstream_docker_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_docker_read + # Retrieve a Docker upstream config for this repository. + # Retrieve a Docker upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [DockerUpstream] + describe 'repos_upstream_docker_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_docker_update + # Update a Docker upstream config for this repository. + # Update a Docker upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [DockerUpstreamRequest] :data + # @return [DockerUpstream] + describe 'repos_upstream_docker_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_helm_create + # Create a Helm upstream config for this repository. + # Create a Helm upstream config for this repository. + # @param owner + # @param identifier + # @param [Hash] opts the optional parameters + # @option opts [HelmUpstreamRequest] :data + # @return [HelmUpstream] + describe 'repos_upstream_helm_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_helm_delete + # Delete a Helm upstream config for this repository. + # Delete a Helm upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [nil] + describe 'repos_upstream_helm_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_helm_list + # List Helm upstream configs for this repository. + # List Helm 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<HelmUpstream>] + describe 'repos_upstream_helm_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_helm_partial_update + # Partially update a Helm upstream config for this repository. + # Partially update a Helm upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [HelmUpstreamRequestPatch] :data + # @return [HelmUpstream] + describe 'repos_upstream_helm_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_helm_read + # Retrieve a Helm upstream config for this repository. + # Retrieve a Helm upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [HelmUpstream] + describe 'repos_upstream_helm_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_helm_update + # Update a Helm upstream config for this repository. + # Update a Helm upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [HelmUpstreamRequest] :data + # @return [HelmUpstream] + describe 'repos_upstream_helm_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_maven_create + # Create a Maven upstream config for this repository. + # Create a Maven upstream config for this repository. + # @param owner + # @param identifier + # @param [Hash] opts the optional parameters + # @option opts [MavenUpstreamRequest] :data + # @return [MavenUpstream] + describe 'repos_upstream_maven_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_maven_delete + # Delete a Maven upstream config for this repository. + # Delete a Maven upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [nil] + describe 'repos_upstream_maven_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_maven_list + # List Maven upstream configs for this repository. + # List Maven 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<MavenUpstream>] + describe 'repos_upstream_maven_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_maven_partial_update + # Partially update a Maven upstream config for this repository. + # Partially update a Maven upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [MavenUpstreamRequestPatch] :data + # @return [MavenUpstream] + describe 'repos_upstream_maven_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_maven_read + # Retrieve a Maven upstream config for this repository. + # Retrieve a Maven upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [MavenUpstream] + describe 'repos_upstream_maven_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_maven_update + # Update a Maven upstream config for this repository. + # Update a Maven upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [MavenUpstreamRequest] :data + # @return [MavenUpstream] + describe 'repos_upstream_maven_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_npm_create + # Create a npm upstream config for this repository. + # Create a npm upstream config for this repository. + # @param owner + # @param identifier + # @param [Hash] opts the optional parameters + # @option opts [NpmUpstreamRequest] :data + # @return [NpmUpstream] + describe 'repos_upstream_npm_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_npm_delete + # Delete a npm upstream config for this repository. + # Delete a npm upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [nil] + describe 'repos_upstream_npm_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_npm_list + # List npm upstream configs for this repository. + # List npm 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<NpmUpstream>] + describe 'repos_upstream_npm_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_npm_partial_update + # Partially update a npm upstream config for this repository. + # Partially update a npm upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [NpmUpstreamRequestPatch] :data + # @return [NpmUpstream] + describe 'repos_upstream_npm_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_npm_read + # Retrieve a npm upstream config for this repository. + # Retrieve a npm upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [NpmUpstream] + describe 'repos_upstream_npm_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_npm_update + # Update a npm upstream config for this repository. + # Update a npm upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [NpmUpstreamRequest] :data + # @return [NpmUpstream] + describe 'repos_upstream_npm_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_nuget_create + # Create a NuGet upstream config for this repository. + # Create a NuGet upstream config for this repository. + # @param owner + # @param identifier + # @param [Hash] opts the optional parameters + # @option opts [NugetUpstreamRequest] :data + # @return [NugetUpstream] + describe 'repos_upstream_nuget_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_nuget_delete + # Delete a NuGet upstream config for this repository. + # Delete a NuGet upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [nil] + describe 'repos_upstream_nuget_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_nuget_list + # List NuGet upstream configs for this repository. + # List NuGet 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<NugetUpstream>] + describe 'repos_upstream_nuget_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_nuget_partial_update + # Partially update a NuGet upstream config for this repository. + # Partially update a NuGet upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [NugetUpstreamRequestPatch] :data + # @return [NugetUpstream] + describe 'repos_upstream_nuget_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_nuget_read + # Retrieve a NuGet upstream config for this repository. + # Retrieve a NuGet upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [NugetUpstream] + describe 'repos_upstream_nuget_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_nuget_update + # Update a NuGet upstream config for this repository. + # Update a NuGet upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [NugetUpstreamRequest] :data + # @return [NugetUpstream] + describe 'repos_upstream_nuget_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_python_create + # Create a Python upstream config for this repository. + # Create a Python upstream config for this repository. + # @param owner + # @param identifier + # @param [Hash] opts the optional parameters + # @option opts [PythonUpstreamRequest] :data + # @return [PythonUpstream] + describe 'repos_upstream_python_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_python_delete + # Delete a Python upstream config for this repository. + # Delete a Python upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [nil] + describe 'repos_upstream_python_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_python_list + # List Python upstream configs for this repository. + # List Python 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<PythonUpstream>] + describe 'repos_upstream_python_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_python_partial_update + # Partially update a Python upstream config for this repository. + # Partially update a Python upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [PythonUpstreamRequestPatch] :data + # @return [PythonUpstream] + describe 'repos_upstream_python_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_python_read + # Retrieve a Python upstream config for this repository. + # Retrieve a Python upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [PythonUpstream] + describe 'repos_upstream_python_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_python_update + # Update a Python upstream config for this repository. + # Update a Python upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [PythonUpstreamRequest] :data + # @return [PythonUpstream] + describe 'repos_upstream_python_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_rpm_create + # Create a RedHat upstream config for this repository. + # Create a RedHat upstream config for this repository. + # @param owner + # @param identifier + # @param [Hash] opts the optional parameters + # @option opts [RpmUpstreamRequest] :data + # @return [RpmUpstream] + describe 'repos_upstream_rpm_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_rpm_delete + # Delete a RedHat upstream config for this repository. + # Delete a RedHat upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [nil] + describe 'repos_upstream_rpm_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_rpm_list + # List RedHat upstream configs for this repository. + # List RedHat 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<RpmUpstream>] + describe 'repos_upstream_rpm_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_rpm_partial_update + # Partially update a RedHat upstream config for this repository. + # Partially update a RedHat upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [RpmUpstreamRequestPatch] :data + # @return [RpmUpstream] + describe 'repos_upstream_rpm_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_rpm_read + # Retrieve a RedHat upstream config for this repository. + # Retrieve a RedHat upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [RpmUpstream] + describe 'repos_upstream_rpm_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_rpm_update + # Update a RedHat upstream config for this repository. + # Update a RedHat upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [RpmUpstreamRequest] :data + # @return [RpmUpstream] + describe 'repos_upstream_rpm_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_ruby_create + # Create a Ruby upstream config for this repository. + # Create a Ruby upstream config for this repository. + # @param owner + # @param identifier + # @param [Hash] opts the optional parameters + # @option opts [RubyUpstreamRequest] :data + # @return [RubyUpstream] + describe 'repos_upstream_ruby_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_ruby_delete + # Delete a Ruby upstream config for this repository. + # Delete a Ruby upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [nil] + describe 'repos_upstream_ruby_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_ruby_list + # List Ruby upstream configs for this repository. + # List Ruby 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<RubyUpstream>] + describe 'repos_upstream_ruby_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_ruby_partial_update + # Partially update a Ruby upstream config for this repository. + # Partially update a Ruby upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [RubyUpstreamRequestPatch] :data + # @return [RubyUpstream] + describe 'repos_upstream_ruby_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_ruby_read + # Retrieve a Ruby upstream config for this repository. + # Retrieve a Ruby upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @return [RubyUpstream] + describe 'repos_upstream_ruby_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_ruby_update + # Update a Ruby upstream config for this repository. + # Update a Ruby upstream config for this repository. + # @param owner + # @param identifier + # @param slug_perm + # @param [Hash] opts the optional parameters + # @option opts [RubyUpstreamRequest] :data + # @return [RubyUpstream] + describe 'repos_upstream_ruby_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_user_list # Get a list of all repositories associated with current user. # Get a list of all repositories associated with current user. # @param [Hash] opts the optional parameters # @option opts [Integer] :page A page number within the paginated result set.