class Faker::Movie

Public Class Methods

quote() click to toggle source

Produces a quote from a movie.

@return [String]

@example

Faker::Movie.quote #=> "Bumble bee tuna"

@faker.version 1.8.1

# File lib/faker/movies/movie.rb, line 28
def quote
  fetch('movie.quote')
end
title() click to toggle source

Produces a title from a movie.

@return [String]

@example

Faker::Movie.title #=> "The Lord of the Rings: The Two Towers"

@faker.version 2.13.0

# File lib/faker/movies/movie.rb, line 15
def title
  fetch('movie.title')
end