class Faker::Tea
def variety(type: nil)
-
(String)
- a variety of tea
Parameters:
-
type
(String, nil
) -- the type of tea to query for (valid types: 'Black', 'Green', 'Oolong', 'White', and 'Herbal')
def variety(type: nil) type ||= fetch('tea.type') fetch "tea.variety.#{type.downcase}" end