class Faker::Artist

Public Class Methods

name() click to toggle source

Produces the name of an artist.

@return [String]

@example

Faker::Artist.name #=> "Michelangelo"

@faker.version 1.8.8

# File lib/faker/default/artist.rb, line 15
def name
  fetch('artist.names')
end