aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/icrowley/fake/jobs.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/icrowley/fake/jobs.go')
-rw-r--r--vendor/github.com/icrowley/fake/jobs.go25
1 files changed, 0 insertions, 25 deletions
diff --git a/vendor/github.com/icrowley/fake/jobs.go b/vendor/github.com/icrowley/fake/jobs.go
deleted file mode 100644
index 6895c7c9..00000000
--- a/vendor/github.com/icrowley/fake/jobs.go
+++ /dev/null
@@ -1,25 +0,0 @@
-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)
-}