Sha256: 2546bbcb878d0459604c8d0b209c4b64c2ed78ea2e109f558e653e35c286f07b
Contents?: true
Size: 710 Bytes
Versions: 28
Compression:
Stored size: 710 Bytes
Contents
require 'test_helper' module Workarea class Shipping class SkuTest < Workarea::TestCase def test_length_units sku = create_shipping_sku Workarea.config.shipping_options = { units: :imperial } assert_equal(:inches, sku.length_units) Workarea.config.shipping_options = { units: :metric } assert_equal(:centimeters, sku.length_units) end def test_weight_units sku = create_shipping_sku Workarea.config.shipping_options = { units: :imperial } assert_equal(:ounces, sku.weight_units) Workarea.config.shipping_options = { units: :metric } assert_equal(:grams, sku.weight_units) end end end end
Version data entries
28 entries across 28 versions & 1 rubygems