Sha256: dfc2d71fa7f1fa0deb4a95523d825bb16d6e0072d8ddbd90cc9618b3bd3803d9
Contents?: true
Size: 829 Bytes
Versions: 32
Compression:
Stored size: 829 Bytes
Contents
require 'spec_helper' describe Spree::TaxCategory, type: :model do context 'default tax category' do let(:tax_category) { create(:tax_category) } let(:new_tax_category) { create(:tax_category) } before do tax_category.update_column(:is_default, true) end it "should undefault the previous default tax category" do new_tax_category.update_attributes({ is_default: true }) expect(new_tax_category.is_default).to be true tax_category.reload expect(tax_category.is_default).to be false end it "should undefault the previous default tax category except when updating the existing default tax category" do tax_category.update_column(:description, "Updated description") tax_category.reload expect(tax_category.is_default).to be true end end end
Version data entries
32 entries across 32 versions & 1 rubygems