You've already forked go-sqlxmock
mirror of
https://github.com/zhashkevych/go-sqlxmock.git
synced 2025-06-24 21:56:48 +02:00
11 lines
182 B
Go
11 lines
182 B
Go
// +build !go1.8
|
|
|
|
package sqlmock
|
|
|
|
import "log"
|
|
|
|
func (c *sqlmock) ExpectPing() *ExpectedPing {
|
|
log.Println("ExpectPing has no effect on Go 1.7 or below")
|
|
return &ExpectedPing{}
|
|
}
|