module FFaker::FoodPL

def food

def food
  case rand(0..1)
  when 0 then processed
  when 1 then unprocessed
  end
end