mirror of
https://github.com/zhashkevych/go-sqlxmock.git
synced 2024-11-24 08:12:13 +02:00
a071483cba
* c600769 do not require a connection name, unique dsn is generated * 1b20b9c update travis * 1097b6a add comments for godoc documentation * c142a95 fix golint reported issues
14 lines
222 B
Go
14 lines
222 B
Go
package sqlmock
|
|
|
|
import (
|
|
"regexp"
|
|
"strings"
|
|
)
|
|
|
|
var re = regexp.MustCompile("\\s+")
|
|
|
|
// strip out new lines and trim spaces
|
|
func stripQuery(q string) (s string) {
|
|
return strings.TrimSpace(re.ReplaceAllString(q, " "))
|
|
}
|