WithTimezone sets the database to the defined timezone.
(tz string)
| 36 | |
| 37 | // WithTimezone sets the database to the defined timezone. |
| 38 | func WithTimezone(tz string) Option { |
| 39 | return func(o *options) { |
| 40 | o.fixedTimezone = tz |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | // WithDumpOnFailure will dump the entire database on test failure. |
| 45 | func WithDumpOnFailure() Option { |
no outgoing calls