diff options
Diffstat (limited to 'vendor/github.com/icrowley/fake/jobs.go')
-rw-r--r-- | vendor/github.com/icrowley/fake/jobs.go | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/github.com/icrowley/fake/jobs.go b/vendor/github.com/icrowley/fake/jobs.go new file mode 100644 index 00000000..6895c7c9 --- /dev/null +++ b/vendor/github.com/icrowley/fake/jobs.go @@ -0,0 +1,25 @@ +package fake + +import ( + "strings" +) + +// Company generates company name +func Company() string { + return lookup(lang, "companies", true) +} + +// JobTitle generates job title +func JobTitle() string { + job := lookup(lang, "jobs", true) + return strings.Replace(job, "#{N}", jobTitleSuffix(), 1) +} + +func jobTitleSuffix() string { + return lookup(lang, "jobs_suffixes", false) +} + +// Industry generates industry name +func Industry() string { + return lookup(lang, "industries", true) +} |