=begin #Subskribe API #No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) OpenAPI spec version: 1.0.0 Generated by: https://github.com/swagger-api/swagger-codegen.git Swagger Codegen version: 2.4.41 =end require 'spec_helper' require 'json' # Unit tests for SubskribeDevClient::NotificationsApi # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen) # Please update as you see appropriate describe 'NotificationsApi' do before do # run before each test @instance = SubskribeDevClient::NotificationsApi.new end after do # run after each test end describe 'test an instance of NotificationsApi' do it 'should create an instance of NotificationsApi' do expect(@instance).to be_instance_of(SubskribeDevClient::NotificationsApi) end end # unit tests for add_target_and_events_subscriptions # Add a notification target # Adds a notification target and events according to the specified parameters # @param body json representing the notification details # @param [Hash] opts the optional parameters # @return [NotificationTargetAndSubscriptions] describe 'add_target_and_events_subscriptions 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_all_notification_subscriptions_for_tenant # Get all notifications # Returns all notification subscriptions for your tenant # @param [Hash] opts the optional parameters # @return [Array] describe 'get_all_notification_subscriptions_for_tenant 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 subscribe_existing_notification_target_to_event # Attach an event to a notification # Attaches a notification event to the target specified by the notification id # @param notification_id id of the notification target # @param notification_event_type type of event # @param [Hash] opts the optional parameters # @return [nil] describe 'subscribe_existing_notification_target_to_event 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 unsubscribe_target_or_event # Unsubscribe from an event # Unsubscribes the specified notification target from the specified event # @param notification_id id of the notification target # @param notification_event_type type of event # @param [Hash] opts the optional parameters # @return [nil] describe 'unsubscribe_target_or_event test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end