Skip to content

Instantly share code, notes, and snippets.

@joshuabezaleel
Created January 8, 2020 03:13
Show Gist options
  • Save joshuabezaleel/f11a40b4b6576ea5bc3937e655b6205e to your computer and use it in GitHub Desktop.
Save joshuabezaleel/f11a40b4b6576ea5bc3937e655b6205e to your computer and use it in GitHub Desktop.
mockDB, mock, err := sqlmock.New()
require.Nil(t, err)
defer mockDB.Close()
db := sqlx.NewDb(mockDB, "sqlmock")
bookRepository := NewBookRepository(db)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment