foodsoft/spec/support/faker.rb
2021-03-02 09:12:19 +01:00

9 lines
150 B
Ruby

module Faker
class Unit
class << self
def unit
['kg', '1L', '100ml', 'piece', 'bunch', '500g'].sample
end
end
end
end