=begin #DocuSign REST API #The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. OpenAPI spec version: v2 Contact: devcenter@docusign.com Generated by: https://github.com/swagger-api/swagger-codegen.git =end require 'spec_helper' require 'json' # Unit tests for SwaggerClient::PowerFormsApi # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen) # Please update as you see appropriate describe 'PowerFormsApi' do before do # run before each test @instance = SwaggerClient::PowerFormsApi.new end after do # run after each test end describe 'test an instance of PowerFormsApi' do it 'should create an instact of PowerFormsApi' do expect(@instance).to be_instance_of(SwaggerClient::PowerFormsApi) end end # unit tests for create_power_form # Creates a new PowerForm. # # @param account_id The external account number (int) or account ID Guid. # @param [Hash] opts the optional parameters # @option opts [PowerForm] :power_form # @return [PowerForm] describe 'create_power_form 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_power_form # Delete a PowerForm. # # @param account_id The external account number (int) or account ID Guid. # @param power_form_id # @param [Hash] opts the optional parameters # @return [nil] describe 'delete_power_form 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_power_forms # Deletes one or more PowerForms # # @param account_id The external account number (int) or account ID Guid. # @param [Hash] opts the optional parameters # @option opts [PowerFormsRequest] :power_forms_request # @return [PowerFormsResponse] describe 'delete_power_forms 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_power_form # Returns a single PowerForm. # # @param account_id The external account number (int) or account ID Guid. # @param power_form_id # @param [Hash] opts the optional parameters # @return [PowerForm] describe 'get_power_form 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_power_form_data # Returns the form data associated with the usage of a PowerForm. # # @param account_id The external account number (int) or account ID Guid. # @param power_form_id # @param [Hash] opts the optional parameters # @option opts [String] :from_date # @option opts [String] :to_date # @return [PowerFormsFormDataResponse] describe 'get_power_form_data 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_power_form_senders # Returns the list of PowerForms available to the user. # # @param account_id The external account number (int) or account ID Guid. # @param [Hash] opts the optional parameters # @option opts [String] :start_position # @return [PowerFormSendersResponse] describe 'list_power_form_senders 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_power_forms # Returns the list of PowerForms available to the user. # # @param account_id The external account number (int) or account ID Guid. # @param [Hash] opts the optional parameters # @option opts [String] :from_date # @option opts [String] :order # @option opts [String] :order_by # @option opts [String] :to_date # @return [PowerFormsResponse] describe 'list_power_forms 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_power_form # Creates a new PowerForm. # # @param account_id The external account number (int) or account ID Guid. # @param power_form_id # @param [Hash] opts the optional parameters # @option opts [PowerForm] :power_form # @return [PowerForm] describe 'update_power_form test' do it "should work" do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end