()
| 36 | } |
| 37 | |
| 38 | func (p ConnectionParams) DSN() string { |
| 39 | return fmt.Sprintf("postgres://%s:%s@%s:%s/%s?sslmode=disable", p.Username, p.Password, p.Host, p.Port, p.DBName) |
| 40 | } |
| 41 | |
| 42 | // These variables are global because all tests share them. |
| 43 | var ( |
no outgoing calls
no test coverage detected