class Faker::Appliance

Public Class Methods

brand() click to toggle source

Produces the name of an appliance brand.

@return [String]

@example

Faker::Appliance.brand #=> "Bosch"

@faker.version 1.9.0

# File lib/faker/default/appliance.rb, line 15
def brand
  fetch('appliance.brand')
end
equipment() click to toggle source

Produces the name of a type of appliance equipment.

@return [String]

@example

Faker::Appliance.equipment #=> "Appliance plug"

@faker.version 1.9.0

# File lib/faker/default/appliance.rb, line 28
def equipment
  fetch('appliance.equipment')
end