diff options
author | Jared Norman <jared@super.gd> | 2019-01-08 16:29:17 -0800 |
---|---|---|
committer | Jared Norman <jared@super.gd> | 2019-01-08 16:29:17 -0800 |
commit | 9aa754d59bebc0da7e177e0841eb6f00f5c800a9 (patch) | |
tree | 9e64ac9216dd6ef2993abad52c342fc7420a4bca /spec | |
parent | 8f972451158f8ce6e743c3c3a5b7a187db23dcef (diff) |
Add dummy calculator
This implements the interface required by Solidus, however it currently
just reports no taxes.
Diffstat (limited to 'spec')
-rw-r--r-- | spec/super_good/solidus_taxjar/tax_calculator_spec.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/spec/super_good/solidus_taxjar/tax_calculator_spec.rb b/spec/super_good/solidus_taxjar/tax_calculator_spec.rb new file mode 100644 index 0000000..eaf810c --- /dev/null +++ b/spec/super_good/solidus_taxjar/tax_calculator_spec.rb @@ -0,0 +1,21 @@ +require 'spec_helper' + +RSpec.describe SuperGood::SolidusTaxJar::TaxCalculator do + describe "#calculate" do + subject { calculator.calculate } + + let(:calculator) { described_class.new(order) } + + let(:order) do + Spree::Order.new( + id: 10 + ) + end + + it "returns the taxes" do + expect(subject.order_id).to eq order.id + expect(subject.line_item_taxes).to be_empty + expect(subject.shipment_taxes).to be_empty + end + end +end |