Sha256: d807803b423c171cffdd6dee8f2d15145ca1d1945c8f74d6ecd0c9c89a0e18a2

Contents?: true

Size: 1.25 KB

Versions: 3

Compression:

Stored size: 1.25 KB

Contents

require "test_helper"
# rake test TEST=test/business_central/object/company_test.rb

class BusinessCentral::Object::CompanyTest < Minitest::Test
  def setup
    @client = BusinessCentral::Client.new
    @company = @client.company
  end

  def test_find_all
    stub_request(:get, /companies/)
      .to_return(
        status: 200, 
        body: {
          'value': [
            {
              displayName: 'business1'
            }
          ]
        }.to_json
      )

    
    response = @company.find_all
    assert_equal response.first[:display_name], 'business1'
  end

  def test_find_by_id
    test_company_id = '123'
    stub_request(:get, /companies\(#{test_company_id}\)/)
      .to_return(
        status: 200, 
        body: {
          displayName: 'business2'
        }.to_json
      )

    response = @company.find_by_id(test_company_id)
    assert_equal response[:display_name], 'business2'
  end

  def test_create
    assert_raises BusinessCentral::NoSupportedMethod do
      @company.create({})
    end
  end

  def test_update
    assert_raises BusinessCentral::NoSupportedMethod do
      @company.update('123', {})
    end
  end

  def test_delete
    assert_raises BusinessCentral::NoSupportedMethod do
      @company.destroy('123')
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
business-central-1.0.3 test/business_central/object/company_test.rb
business-central-1.0.2 test/business_central/object/company_test.rb
business-central-1.0.1 test/business_central/object/company_test.rb