=begin #Datadog API V1 Collection #Collection of all Datadog Public endpoints. The version of the OpenAPI document: 1.0 Contact: support@datadoghq.com Generated by: https://openapi-generator.tech OpenAPI Generator version: 5.0.0-SNAPSHOT =end require 'spec_helper' require 'json' # Unit tests for DatadogAPIClient::V1::PagerDutyIntegrationApi # Automatically generated by openapi-generator (https://openapi-generator.tech) # Please update as you see appropriate describe 'PagerDutyIntegrationApi' do before do # run before each test @api_instance = DatadogAPIClient::V1::PagerDutyIntegrationApi.new end after do # run after each test end describe 'test an instance of PagerDutyIntegrationApi' do it 'should create an instance of PagerDutyIntegrationApi' do expect(@api_instance).to be_instance_of(DatadogAPIClient::V1::PagerDutyIntegrationApi) end end # unit tests for create_pager_duty_integration_service # Create a new service object # Create a new service object in the PagerDuty integration. # @param body Create a new service object request body. # @param [Hash] opts the optional parameters # @return [PagerDutyServiceName] describe 'create_pager_duty_integration_service 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_pager_duty_integration_service # Delete a single service object # Delete a single service object in the Datadog-PagerDuty integration. # @param service_name The service name # @param [Hash] opts the optional parameters # @return [nil] describe 'delete_pager_duty_integration_service 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 get_pager_duty_integration_service # Get a single service object # Get service name in the Datadog-PagerDuty integration. # @param service_name The service name. # @param [Hash] opts the optional parameters # @return [PagerDutyServiceName] describe 'get_pager_duty_integration_service 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 update_pager_duty_integration_service # Update a single service object # Update a single service object in the Datadog-PagerDuty integration. # @param service_name The service name # @param body Update an existing service object request body. # @param [Hash] opts the optional parameters # @return [nil] describe 'update_pager_duty_integration_service test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end