class Faker::Educator

Public Class Methods

campus() click to toggle source
# File lib/faker/educator.rb, line 18
def campus
  "#{fetch('educator.name')} Campus"
end
course() click to toggle source
# File lib/faker/educator.rb, line 10
def course
  "#{fetch('educator.tertiary.course.type')} #{fetch('educator.tertiary.course.subject')}"
end
secondary_school() click to toggle source
# File lib/faker/educator.rb, line 14
def secondary_school
  "#{fetch('educator.name')} #{fetch('educator.secondary')}"
end
university() click to toggle source
# File lib/faker/educator.rb, line 6
def university
  "#{fetch('educator.name')} #{fetch('educator.tertiary.type')}"
end