class Faker::TvShows::TheThickOfIt

Public Class Methods

character() click to toggle source

Produces a character from The Thick of It.

@return [String]

@example

Faker::TvShows::TheThickOfIt.character #=> "Nicola Murray"

@faker.version 1.8.5

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

Produces a department from The Thick of It.

@return [String]

@example

Faker::TvShows::TheThickOfIt.department #=> "Shadow Cabinet"

@faker.version 1.8.5

# File lib/faker/tv_shows/the_thick_of_it.rb, line 31
def department
  fetch('the_thick_of_it.departments')
end
position() click to toggle source

Produces a position from The Thick of It.

@return [String]

@example

Faker::TvShows::TheThickOfIt.position
  #=> "Director of Communications"

@faker.version 1.8.5

# File lib/faker/tv_shows/the_thick_of_it.rb, line 45
def position
  fetch('the_thick_of_it.positions')
end