Add common whitespace to spec

This commit is contained in:
Maikel Linke
2023-06-26 12:39:41 +10:00
parent b072da142e
commit 7f94fbc085

View File

@@ -98,11 +98,13 @@ describe OrderCyclesHelper, type: :helper do
let(:hub2) { create(:distributor_enterprise, name: 'hub2') }
let(:supplier){ create(:supplier_enterprise, name: 'supplier') }
let(:coordinator){ create(:distributor_enterprise, name: 'coordinator') }
before do
allow(oc).to receive(:coordinator).and_return coordinator
allow(oc).to receive(:suppliers).and_return [supplier]
allow(oc).to receive(:distributors).and_return [hub1, hub2]
end
context 'current user is a coordinator' do
before do
allow(helper).to receive(:spree_current_user).and_return coordinator.owner
@@ -112,18 +114,22 @@ describe OrderCyclesHelper, type: :helper do
expect(helper.distributors_with_editable_shipping_and_payment_methods(oc)).to eq [hub1, hub2]
end
end
context 'current user is a producer' do
before do
allow(helper).to receive(:spree_current_user).and_return supplier.owner
end
it "doesn't return any distributors" do
expect(helper.distributors_with_editable_shipping_and_payment_methods(oc)).to eq []
end
end
context 'current user is a hub' do
before do
allow(helper).to receive(:spree_current_user).and_return hub1.owner
end
it "returns only the hubs of the current user" do
expect(helper.distributors_with_editable_shipping_and_payment_methods(oc)).to eq [hub1]
end