diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-16 18:21:36 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-16 18:22:00 +0200 |
commit | 1e43a6a7e35b32a95b0c533d8b2d31f242e72463 (patch) | |
tree | a52a07b97ca5daae0ca3576e3f3fe0e565818493 /vendor/github.com/icrowley/fake/jobs.go | |
parent | f510e43418aef31e8521d346abdcda6c38f34eaf (diff) | |
download | git-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.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) +} |