elliotchance / tf

✔️ tf is a microframework for parameterized testing of functions and HTTP in Go.
MIT License
137 stars 3 forks source link

Remove the testify dependency #3

Open elliotchance opened 5 years ago

elliotchance commented 5 years ago

testify is great, but tf doesn't really need have it as a dependency. Instead just use the build in reflect.DeepEqual, as testify does.

dnephin commented 5 years ago

https://github.com/stretchr/testify/issues/535 seems relevant. Might want to use https://github.com/google/go-cmp instead. It worked well for me.

elliotchance commented 5 years ago

Yes, that's a great idea! Fancy putting in a PR? 😄

m1ome commented 5 years ago

Will jump over it after merging #10 😄

m1ome commented 5 years ago

Now after merging #11