module FFaker::EducationCN
def degree
def degree "#{fetch_sample(DEGREE_PREFIX)}#{fetch_sample(DEGREE_SUFFIX)}" end
def location
def location case rand(0..2) when 0 then fetch_sample(PROVINCE) when 1 then fetch_sample(CITY) when 2 then fetch_sample(POSITION) end end
def major
def major fetch_sample(MAJOR) end
def school
def school case rand(0..2) when 0 then "#{location}#{fetch_sample(SCHOOL_TYPE)}#{fetch_sample(SCHOOL_UNI)}" when 1 then "#{location}#{fetch_sample(SCHOOL_UNI)}" when 2 then "#{location}#{fetch_sample(SCHOOL_TYPE)}#{fetch_sample(SCHOOL_UNI)}#{fetch_sample(CITY)}分校" end end