=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 Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2020-Present Datadog, Inc. =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