class Faker::TvShows::Suits

Public Class Methods

character() click to toggle source

Produces a character from Suits.

@return [String]

@example

Faker::TvShows::Suits.character #=> "Harvey Specter"

@faker.version 2.13.0

# File lib/faker/tv_shows/suits.rb, line 18
def character
  fetch('suits.characters')
end
quote() click to toggle source

Produces a quote from Suits.

@return [String]

@example

Faker::TvShows::Suits.quote #=> "Don't play the odds, play the man."

@faker.version 2.13.0

# File lib/faker/tv_shows/suits.rb, line 31
def quote
  fetch('suits.quotes')
end