summaryrefslogtreecommitdiff
path: root/newguy_test.go
blob: 6c58d97c7bcaa8035cde22788286310081c0d907 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package main

import "testing"

func TestNewGuy(t *testing.T) {
	g := NewGuy()
	t.Logf("%+v", g)

	for q := range g.queue {
		t.Log(q)
	}
}