diff options
author | Jared Norman <jared@super.gd> | 2019-05-28 15:52:40 -0700 |
---|---|---|
committer | Jared Norman <jared@super.gd> | 2019-05-28 15:52:40 -0700 |
commit | a7befa9c98f4863edc617ef791c7518e5b1fe168 (patch) | |
tree | cbf6cc9d3f4a542034948f6dee1eccd844a2af8c /spec | |
parent | c3e66f3b548ef7e829b97ccebf5e45ce9d25f04d (diff) |
Add configuration option for order tax check
This will allow apps to use properties of an order to determine whether
an order is taxable.
Diffstat (limited to 'spec')
-rw-r--r-- | spec/super_good/solidus_taxjar_spec.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/super_good/solidus_taxjar_spec.rb b/spec/super_good/solidus_taxjar_spec.rb index dafc4fb..efc38b0 100644 --- a/spec/super_good/solidus_taxjar_spec.rb +++ b/spec/super_good/solidus_taxjar_spec.rb @@ -37,6 +37,14 @@ RSpec.describe SuperGood::SolidusTaxJar do it { is_expected.to eq true } end + describe ".taxable_order_check" do + subject { described_class.taxable_order_check.(order) } + + let(:order) { Spree::Order.new } + + it { is_expected.to eq true } + end + describe ".shipping_tax_label_maker" do subject { described_class.shipping_tax_label_maker.(shipment, shipping_tax) } let(:shipment) { Spree::Shipment.new } |