diff options
author | Ben Morrison <ben@gbmor.dev> | 2019-05-13 00:54:04 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2019-05-13 00:54:04 -0400 |
commit | 45a67221f5336e679362989358407a2583f21edf (patch) | |
tree | 58c03f91e245ca30f4b5d1d53fecdaca98370524 /handlers_test.go | |
parent | 5310d08bda170e2d394d27410655283e1797b7ff (diff) | |
download | getwtxt-45a67221f5336e679362989358407a2583f21edf.tar.gz |
stubbing out tests
Diffstat (limited to 'handlers_test.go')
-rw-r--r-- | handlers_test.go | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/handlers_test.go b/handlers_test.go new file mode 100644 index 0000000..72d3304 --- /dev/null +++ b/handlers_test.go @@ -0,0 +1,31 @@ +package main + +import ( + "fmt" + "log" + "net/http" + "net/http/httptest" + "os" + "testing" +) + +func logToNull() { + hush, err := os.Open("/dev/null") + if err != nil { + log.Printf("%v\n", err) + } + log.SetOutput(hush) +} + +func Test_indexHandler(t *testing.T) { + logToNull() + t.Run("indexHandler", func(t *testing.T) { + w := httptest.NewRecorder() + req := httptest.NewRequest("GET", "localhost:9001/", nil) + indexHandler(w, req) + resp := w.Result() + if resp.StatusCode != http.StatusOK { + t.Errorf(fmt.Sprintf("%v", resp.StatusCode)) + } + }) +} |