mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-12 03:50:22 +00:00
11 lines
307 B
Ruby
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
|