Sha256: 712da84a7ebbfc6076ef568b4afee11f06fc8da6e573f3c783f5fc45166b0265

Contents?: true

Size: 1.04 KB

Versions: 19

Compression:

Stored size: 1.04 KB

Contents

require 'test_helper'

class FindOrderTest < Minitest::Test
  def find_order
    Gillbus::FindOrder::Response.parse_string(File.read('test/responses/findOrder.xml'))
  end

  def find_order2
    Gillbus::FindOrder::Response.parse_string(File.read('test/responses/bookingDifferentCurrencies.xml'))
  end

  def test_number
    assert_equal('14482', find_order.tickets.first.ticket_number)
  end

  def test_total
    assert_equal(Money.new(20_46, 'UAH'), find_order.tickets.first.total_amount)
  end

  def test_status
    assert_equal(:ticketed, find_order.tickets.first.ticket_status)
  end

  def test_return_causes
    assert_equal(Money.new(20_38, 'UAH'), find_order.tickets.first.return_causes.first.approximate_amount)
  end

  def test_comission_vat_value
    assert_equal('18', find_order.tickets.last.commissions.first.vat_value)
  end

  def test_vat_value
    assert_equal('0', find_order.tickets.first.vat_value)
  end

  def test_comission_currency
    assert_equal(Money.new(51_55, 'RUB'), find_order2.tickets.last.commissions.last.value)
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
gillbus-0.18.10 test/find_order_test.rb
gillbus-0.18.9 test/find_order_test.rb
gillbus-0.18.8 test/find_order_test.rb
gillbus-0.18.7 test/find_order_test.rb
gillbus-0.18.6 test/find_order_test.rb
gillbus-0.18.5 test/find_order_test.rb
gillbus-0.18.4 test/find_order_test.rb
gillbus-0.18.3 test/find_order_test.rb
gillbus-0.18.2 test/find_order_test.rb
gillbus-0.18.1 test/find_order_test.rb
gillbus-0.17.6 test/find_order_test.rb
gillbus-0.17.5 test/find_order_test.rb
gillbus-0.17.4 test/find_order_test.rb
gillbus-0.17.3 test/find_order_test.rb
gillbus-0.17.2 test/find_order_test.rb
gillbus-0.17.1 test/find_order_test.rb
gillbus-0.16.10 test/find_order_test.rb
gillbus-0.16.9 test/find_order_test.rb
gillbus-0.16.8 test/find_order_test.rb