class Faker::TvShows::SouthPark

Public Class Methods

character() click to toggle source

Produces a character from South Park.

@return [String]

@example

Faker::TvShows::SouthPark.character #=> "Mr. Garrison"

@faker.version 1.9.2

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

Produces an episode name from South Park.

@return [String]

@example

Faker::TvShows::SouthPark.episode_name
  #=> "Make Love, Not Warcraft"

@faker.version next

# File lib/faker/tv_shows/south_park.rb, line 47
def episode_name
  fetch('south_park.episodes')
end
quote() click to toggle source

Produces a quote from South Park.

@return [String]

@example

Faker::TvShows::SouthPark.quote
  #=> "I'm just getting a little cancer Stan."

@faker.version 1.9.2

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