Snowflake client now using a reconnect loop (#12)

This commit is contained in:
Serene Han 2016-02-17 19:19:11 -08:00
parent eb7eb04ac0
commit f205a0be59
2 changed files with 93 additions and 62 deletions

View file

@ -38,6 +38,10 @@ func TestConnect(t *testing.T) {
So(c.buffer.Bytes(), ShouldEqual, nil)
So(mock.destination.Bytes(), ShouldResemble, []byte("test"))
})
Convey("Connect Loop", func() {
// TODO
})
})
})