corpetty / go-alethio-api

Alethio API client written in golang
3 stars 2 forks source link

no tests #7

Open corpetty opened 4 years ago

corpetty commented 4 years ago

We need tests for each API endpoint. Thoughts on frameworks on this?

tzapu commented 4 years ago

https://github.com/stretchr/testify is quite useful and they seem to recommend https://golang.org/pkg/net/http/httptest/ for http specific tests

tzapu commented 4 years ago

i am also a big fan of using golden files for more complicated testst https://medium.com/soon-london/testing-with-golden-files-in-go-7fccc71c43d3

(and table tests ofc)