Files
openfoodnetwork/spec/helpers/spree/base_helper_spec.rb
Maikel Linke 757a1548e6 Fix whitespace
2025-02-04 15:52:28 +11:00

63 lines
1.8 KiB
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Spree::BaseHelper do
include Spree::BaseHelper
context "available_countries" do
let(:country) { create(:country) }
before do
3.times { create(:country) }
allow(ENV).to receive(:fetch).and_call_original
end
context "with no checkout zone defined" do
before do
allow(ENV).to receive(:fetch).and_return(nil)
end
it "return complete list of countries" do
expect(available_countries.count).to eq Spree::Country.count
end
end
context "with a checkout zone defined" do
context "checkout zone is of type country" do
before do
country_zone = create(:zone, name: "CountryZone", member: country)
allow(ENV).to receive(:fetch).and_return(country_zone.name)
end
it "return only the countries defined by the checkout zone" do
expect(available_countries).to eq [country]
end
end
context "checkout zone is of type state" do
before do
state_zone = create(:zone, name: "StateZone")
state = create(:state, country:)
state_zone.members.create(zoneable: state)
allow(ENV).to receive(:fetch).and_return(state_zone.name)
end
it "return complete list of countries" do
expect(available_countries.count).to eq Spree::Country.count
end
end
end
end
context "pretty_time" do
it "prints in a format with single digit time" do
expect(pretty_time(DateTime.new(2012, 5, 6, 13, 33))).to eq "May 06, 2012 1:33 PM"
end
it "prints in a format with double digit time" do
expect(pretty_time(DateTime.new(2012, 5, 6, 12, 33))).to eq "May 06, 2012 12:33 PM"
end
end
end