Is there a mocking library that works well with XORM. I've been trying to get gopkg.in/DATA-DOG/go-sqlmock.v1 to work but it's such a hassle to even get it running. When I try to mock complicated queries it just blows up and it's saying the sql string doesn't match despite it matching... Basically, I'm wondering what other people are doing to test without actually having to spin up a test database. That just seems wrong. Thanks!
Is there a mocking library that works well with XORM. I've been trying to get
gopkg.in/DATA-DOG/go-sqlmock.v1
to work but it's such a hassle to even get it running. When I try to mock complicated queries it just blows up and it's saying the sql string doesn't match despite it matching... Basically, I'm wondering what other people are doing to test without actually having to spin up a test database. That just seems wrong. Thanks!