summaryrefslogtreecommitdiff
path: root/newguy_test.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-08-12 14:05:45 +0200
committerDimitri Sokolyuk <demon@dim13.org>2016-08-12 14:05:45 +0200
commit14a6aa4c488bcd2d49103cbee1424b2769d77ce0 (patch)
tree93e3875919eeb0e60d0a8da70f5d96152a4e527a /newguy_test.go
Initial import
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)
+}