require 'spec_helper'
require 'json'

# Unit tests for Phrase::OrganizationJobTemplatesApi
# Automatically generated by openapi-generator (https://openapi-generator.tech)
# Please update as you see appropriate
describe 'OrganizationJobTemplatesApi' do
  before do
    # run before each test
    @api_instance = Phrase::OrganizationJobTemplatesApi.new
  end

  after do
    # run after each test
  end

  describe 'test an instance of OrganizationJobTemplatesApi' do
    it 'should create an instance of OrganizationJobTemplatesApi' do
      expect(@api_instance).to be_instance_of(Phrase::OrganizationJobTemplatesApi)
    end
  end

  # unit tests for organization_job_template_create
  # Create an organization job template
  # Create a new organization job template.
  # @param account_id Account ID
  # @param organization_job_template_create_parameters 
  # @param [Hash] opts the optional parameters
  # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
  # @return [OrganizationJobTemplateDetails]
  describe 'organization_job_template_create 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 organization_job_template_delete
  # Delete an organization job template
  # Delete an existing organization job template.
  # @param account_id Account ID
  # @param id ID
  # @param [Hash] opts the optional parameters
  # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
  # @return [nil]
  describe 'organization_job_template_delete 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 organization_job_template_update
  # Update an organization job template
  # Update an existing organization job template.
  # @param account_id Account ID
  # @param id ID
  # @param organization_job_template_update_parameters 
  # @param [Hash] opts the optional parameters
  # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
  # @return [OrganizationJobTemplateDetails]
  describe 'organization_job_template_update 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 organization_job_templates_list
  # List organization job templates
  # List all job templates for the given account.
  # @param account_id Account ID
  # @param [Hash] opts the optional parameters
  # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
  # @option opts [Integer] :page Page number
  # @option opts [Integer] :per_page Limit on the number of objects to be returned, between 1 and 100. 25 by default
  # @return [Array<OrganizationJobTemplate>]
  describe 'organization_job_templates_list 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 organization_job_templates_show
  # Get a single organization job template
  # Get details on a single organization job template for a given account.
  # @param account_id Account ID
  # @param id ID
  # @param [Hash] opts the optional parameters
  # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
  # @return [OrganizationJobTemplateDetails]
  describe 'organization_job_templates_show test' do
    it 'should work' do
      # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
    end
  end

end