Sha256: 34af9739a52816c8d0a36b007e74df03b13355ceaa8aee26a9f39c0cde8309dd

Contents?: true

Size: 1.04 KB

Versions: 16

Compression:

Stored size: 1.04 KB

Contents

require 'test_helper'

class RemoteKunakiTest < Minitest::Test
  include ActiveShipping::Test::Fixtures

  def setup
    @carrier = Kunaki.new
    @item1 = { :sku => 'XZZ1111111', :quantity => 2 }
    @item2 = { :sku => 'PXZZ111112', :quantity => 1 }
    @items = [@item1, @item2]
  end

  def test_successful_rates_request
    response = @carrier.find_rates(
                 location_fixtures[:ottawa],
                 location_fixtures[:beverly_hills],
                 package_fixtures.values_at(:book, :wii),
                 :items => @items
               )

    assert response.success?
    assert_equal 4, response.rates.size
    assert_equal ["UPS 2nd Day Air", "UPS Ground", "UPS Next Day Air Saver", "USPS Priority Mail"], response.rates.collect(&:service_name).sort
  end

  def test_send_no_items
    assert_raises(ActiveUtils::ResponseError) do
      @carrier.find_rates(
        location_fixtures[:ottawa],
        location_fixtures[:beverly_hills],
        package_fixtures.values_at(:book, :wii),
        :items => []
      )
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
active_shipping-1.4.3 test/remote/kunaki_test.rb
active_shipping-1.4.2 test/remote/kunaki_test.rb
active_shipping-1.4.1 test/remote/kunaki_test.rb
active_shipping-1.4.0 test/remote/kunaki_test.rb
active_shipping-1.3.0 test/remote/kunaki_test.rb
active_shipping-1.2.2 test/remote/kunaki_test.rb
active_shipping-1.2.1 test/remote/kunaki_test.rb
active_shipping-1.2.0 test/remote/kunaki_test.rb
active_shipping-1.1.3 test/remote/kunaki_test.rb
active_shipping-1.1.2 test/remote/kunaki_test.rb
active_shipping-1.1.1 test/remote/kunaki_test.rb
active_shipping-1.1.0 test/remote/kunaki_test.rb
active_shipping-1.0.1 test/remote/kunaki_test.rb
active_shipping-1.0.0 test/remote/kunaki_test.rb
active_shipping-1.0.0.pre4 test/remote/kunaki_test.rb
active_shipping-1.0.0.pre3 test/remote/kunaki_test.rb