Sha256: 823e0186048abd31c0ed2710198bab3df1ca414587030b48e276cea2a432a582
Contents?: true
Size: 493 Bytes
Versions: 4
Compression:
Stored size: 493 Bytes
Contents
require "spec_helper" module ShipCompliant describe ProductSalesTaxRate do it { should be_kind_of(SalesTaxRate) } subject { ProductSalesTaxRate.new(brand_key: 'brand-key', product_key: 'the-product') } context "product_key" do it "returns the product key" do subject.product_key.should == 'the-product' end end context "brand_key" do it "returns the brand key" do subject.brand_key.should == 'brand-key' end end end end
Version data entries
4 entries across 4 versions & 1 rubygems