Files
openfoodnetwork/spec/helpers/spree/admin/general_settings_helper_spec.rb
Maikel Linke dcb6f4676d Remove all unnecessary spec_helper require statements
The `.rspec` file is doing this for us.
2026-01-21 12:35:34 +11:00

11 lines
307 B
Ruby

# frozen_string_literal: true
RSpec.describe Spree::Admin::GeneralSettingsHelper do
describe "#all_units" do
it "returns all units" do
expect(helper.all_units).to eq(["mg", "g", "kg", "T", "oz", "lb", "mL", "cL", "dL", "L",
"kL", "gal"])
end
end
end