Sha256: cfe9800d878c83f63553f4e64f2541f55058eee1a373adfe98f66fa52f67f9ee
Contents?: true
Size: 1.71 KB
Versions: 2
Compression:
Stored size: 1.71 KB
Contents
require_relative 'test_helper' class OrderParserTest < ParserTest def setup node = fixture('orders').xpath('//xmlns:Order').first @order = Parser::Order.new(node) end def test_amazon_order_id assert_kind_of String, @order.amazon_order_id end def test_purchase_time assert_kind_of Time, @order.purchased_at end def test_last_update_time assert_kind_of Time, @order.last_updated_at end def test_status assert_kind_of String, @order.status end def test_type assert_kind_of String, @order.type end def test_sales_channel assert_kind_of String, @order.sales_channel end def test_ship_service_level assert_kind_of String, @order.ship_service_level end def test_fulfillment_channel assert_kind_of String, @order.fulfillment_channel end def test_total assert_kind_of Money, @order.total end def test_shipping_address assert_kind_of Parser::ShippingAddress, @order.shipping_address end def test_number_of_items_shipped assert_kind_of Integer, @order.number_of_items_shipped end def test_number_of_items_unshipped assert_kind_of Integer, @order.number_of_items_unshipped end def test_payment_execution_detail assert_kind_of Parser::PaymentExecutionDetail, @order.payment_execution_detail end def test_payment_method assert_kind_of String, @order.payment_method end def test_marketplace_id assert_kind_of String, @order.marketplace_id end def test_buyer_name assert_kind_of String, @order.buyer_name end def test_buyer_email assert_kind_of String, @order.buyer_email end def test_shipment_service_level_category assert_kind_of String, @order.shipment_service_level_category end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mws-orders-0.0.2 | test/parsers/order_test.rb |
mws-orders-0.0.1 | test/parsers/order_test.rb |