=begin #Pulp 3 API #Fetch, Upload, Organize, and Distribute Software Packages The version of the OpenAPI document: v3 Contact: pulp-list@redhat.com Generated by: https://openapi-generator.tech OpenAPI Generator version: 4.2.3 =end require 'spec_helper' require 'json' # Unit tests for PulpContainerClient::RepositoriesContainerVersionsApi # Automatically generated by openapi-generator (https://openapi-generator.tech) # Please update as you see appropriate describe 'RepositoriesContainerVersionsApi' do before do # run before each test @api_instance = PulpContainerClient::RepositoriesContainerVersionsApi.new end after do # run after each test end describe 'test an instance of RepositoriesContainerVersionsApi' do it 'should create an instance of RepositoriesContainerVersionsApi' do expect(@api_instance).to be_instance_of(PulpContainerClient::RepositoriesContainerVersionsApi) end end # unit tests for delete # Delete a repository version # Trigger an asynchronous task to delete a repository version. # @param container_container_push_repository_version_href # @param [Hash] opts the optional parameters # @return [AsyncOperationResponse] describe '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 delete_0 # Delete a repository version # Trigger an asynchronous task to delete a repository version. # @param container_container_repository_version_href # @param [Hash] opts the optional parameters # @return [AsyncOperationResponse] describe 'delete_0 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 list # List repository versions # ContainerPushRepositoryVersion represents a single container push repository version. Repository versions of a push repository are not allowed to be deleted. Versioning of such repositories, as well as creation/removal, happens automatically without explicit user actions. Users could make a repository not functional by accident if allowed to delete repository versions. # @param container_container_push_repository_href # @param [Hash] opts the optional parameters # @option opts [String] :content content # @option opts [String] :content__in content__in # @option opts [Integer] :limit Number of results to return per page. # @option opts [String] :number number # @option opts [String] :number__gt number__gt # @option opts [String] :number__gte number__gte # @option opts [String] :number__lt number__lt # @option opts [String] :number__lte number__lte # @option opts [String] :number__range number__range # @option opts [Integer] :offset The initial index from which to return the results. # @option opts [String] :ordering Which field to use when ordering the results. # @option opts [String] :pulp_created pulp_created # @option opts [String] :pulp_created__gt pulp_created__gt # @option opts [String] :pulp_created__gte pulp_created__gte # @option opts [String] :pulp_created__lt pulp_created__lt # @option opts [String] :pulp_created__lte pulp_created__lte # @option opts [String] :pulp_created__range pulp_created__range # @option opts [String] :fields A list of fields to include in the response. # @option opts [String] :exclude_fields A list of fields to exclude from the response. # @return [PaginatedRepositoryVersionResponseList] describe '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 list_0 # List repository versions # ContainerRepositoryVersion represents a single container repository version. # @param container_container_repository_href # @param [Hash] opts the optional parameters # @option opts [String] :content content # @option opts [String] :content__in content__in # @option opts [Integer] :limit Number of results to return per page. # @option opts [String] :number number # @option opts [String] :number__gt number__gt # @option opts [String] :number__gte number__gte # @option opts [String] :number__lt number__lt # @option opts [String] :number__lte number__lte # @option opts [String] :number__range number__range # @option opts [Integer] :offset The initial index from which to return the results. # @option opts [String] :ordering Which field to use when ordering the results. # @option opts [String] :pulp_created pulp_created # @option opts [String] :pulp_created__gt pulp_created__gt # @option opts [String] :pulp_created__gte pulp_created__gte # @option opts [String] :pulp_created__lt pulp_created__lt # @option opts [String] :pulp_created__lte pulp_created__lte # @option opts [String] :pulp_created__range pulp_created__range # @option opts [String] :fields A list of fields to include in the response. # @option opts [String] :exclude_fields A list of fields to exclude from the response. # @return [PaginatedRepositoryVersionResponseList] describe 'list_0 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 read # Inspect a repository version # ContainerPushRepositoryVersion represents a single container push repository version. Repository versions of a push repository are not allowed to be deleted. Versioning of such repositories, as well as creation/removal, happens automatically without explicit user actions. Users could make a repository not functional by accident if allowed to delete repository versions. # @param container_container_push_repository_version_href # @param [Hash] opts the optional parameters # @option opts [String] :fields A list of fields to include in the response. # @option opts [String] :exclude_fields A list of fields to exclude from the response. # @return [RepositoryVersionResponse] describe '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 read_0 # Inspect a repository version # ContainerRepositoryVersion represents a single container repository version. # @param container_container_repository_version_href # @param [Hash] opts the optional parameters # @option opts [String] :fields A list of fields to include in the response. # @option opts [String] :exclude_fields A list of fields to exclude from the response. # @return [RepositoryVersionResponse] describe 'read_0 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 repair # Trigger an asynchronous task to repair a repository version. # @param container_container_push_repository_version_href # @param repository_version # @param [Hash] opts the optional parameters # @return [AsyncOperationResponse] describe 'repair 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 repair_0 # Trigger an asynchronous task to repair a repository version. # @param container_container_repository_version_href # @param repository_version # @param [Hash] opts the optional parameters # @return [AsyncOperationResponse] describe 'repair_0 test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end