mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-31 21:37:16 +00:00
13 lines
330 B
Ruby
13 lines
330 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
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
|