Documentation ¶
Overview ¶
Package dbtest contains supporting code for running tests that hit the DB.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func FloatPointer ¶
FloatPointer is a helper to get a *float64 from a float64. It is in the tests package because we normally don't want to deal with pointers to basic types but it's useful in some tests.
func IntPointer ¶
IntPointer is a helper to get a *int from a int. It is in the tests package because we normally don't want to deal with pointers to basic types but it's useful in some tests.
func StringPointer ¶
StringPointer is a helper to get a *string from a string. It is in the tests package because we normally don't want to deal with pointers to basic types but it's useful in some tests.
Types ¶
type Test ¶
type Test struct { DB *sqlx.DB Log *logger.Logger Auth *auth.Auth Teardown func() // contains filtered or unexported fields }
Test owns state for running and shutting down tests.