summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/icrowley/fake/products.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/icrowley/fake/products.go')
-rw-r--r--vendor/github.com/icrowley/fake/products.go26
1 files changed, 26 insertions, 0 deletions
diff --git a/vendor/github.com/icrowley/fake/products.go b/vendor/github.com/icrowley/fake/products.go
new file mode 100644
index 000000000..9c45fb3aa
--- /dev/null
+++ b/vendor/github.com/icrowley/fake/products.go
@@ -0,0 +1,26 @@
+package fake
+
+// Brand generates brand name
+func Brand() string {
+ return Company()
+}
+
+// ProductName generates product name
+func ProductName() string {
+ productName := lookup(lang, "adjectives", true) + " " + lookup(lang, "nouns", true)
+ if r.Intn(2) == 1 {
+ productName = lookup(lang, "adjectives", true) + " " + productName
+ }
+ return productName
+}
+
+// Product generates product title as brand + product name
+func Product() string {
+ return Brand() + " " + ProductName()
+}
+
+// Model generates model name that consists of letters and digits, optionally with a hyphen between them
+func Model() string {
+ seps := []string{"", " ", "-"}
+ return CharactersN(r.Intn(3)+1) + seps[r.Intn(len(seps))] + Digits()
+}