aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/icrowley/fake/jobs.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-08-16 18:21:36 +0200
committerMichael Muré <batolettre@gmail.com>2018-08-16 18:22:00 +0200
commit1e43a6a7e35b32a95b0c533d8b2d31f242e72463 (patch)
treea52a07b97ca5daae0ca3576e3f3fe0e565818493 /vendor/github.com/icrowley/fake/jobs.go
parentf510e43418aef31e8521d346abdcda6c38f34eaf (diff)
downloadgit-bug-1e43a6a7e35b32a95b0c533d8b2d31f242e72463.tar.gz
add a new main to generate random bugs
Diffstat (limited to 'vendor/github.com/icrowley/fake/jobs.go')
-rw-r--r--vendor/github.com/icrowley/fake/jobs.go25
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)
+}