summaryrefslogtreecommitdiff
path: root/newguy_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'newguy_test.go')
-rw-r--r--newguy_test.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/newguy_test.go b/newguy_test.go
new file mode 100644
index 0000000..585f7a0
--- /dev/null
+++ b/newguy_test.go
@@ -0,0 +1,13 @@
+package main
+
+import "testing"
+
+func TestGenerateName(t *testing.T) {
+ name := GenerateName()
+ t.Log(name)
+}
+
+func TestNewGuy(t *testing.T) {
+ g := NewGuy()
+ t.Logf("%+v", g)
+}