=begin #Smooch #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 =end require 'spec_helper' require 'json' # Unit tests for RainbowSubmarineTest3356::ConversationApi # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen) # Please update as you see appropriate describe 'ConversationApi' do before do # run before each test @instance = RainbowSubmarineTest3356::ConversationApi.new end after do # run after each test end describe 'test an instance of ConversationApi' do it 'should create an instact of ConversationApi' do expect(@instance).to be_instance_of(RainbowSubmarineTest3356::ConversationApi) end end # unit tests for get_messages # # Get the specified app users messages. # @param user_id Identifies the user. Can be either the smoochId or the userId. # @param [Hash] opts the optional parameters # @option opts [String] :before Timestamp of message. The API will return 100 messages before the specified timestamp (excluding any messages with the provided timestamp). # @option opts [String] :after Timestamp of message. The API will return 100 messages after the specified timestamp (excluding any messages with the provided timestamp). # @return [GetMessagesResponse] describe 'get_messages 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 reset_unread_count # # Reset the unread count of the conversation to 0. If the conversation has not yet been created for the specified app user 404 will be returned. # @param user_id Identifies the user. Can be either the smoochId or the userId. # @param [Hash] opts the optional parameters # @return [nil] describe 'reset_unread_count 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 trigger_typing_activity # # Notify Smooch when an app maker starts or stops typing a response. # @param user_id Identifies the user. Can be either the smoochId or the userId. # @param typing_activity_trigger Supported properties for a triggerTypingActivity request. # @param [Hash] opts the optional parameters # @return [nil] describe 'trigger_typing_activity test' do it "should work" do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end