foodsoft/spec/support/faker.rb
2020-07-27 18:17:30 +02:00

10 lines
151 B
Ruby

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