1
0
mirror of https://github.com/zhashkevych/go-sqlxmock.git synced 2025-06-30 22:03:43 +02:00

mock Prepare to return error

This commit is contained in:
Luigi Kapaj
2014-09-23 17:38:15 -04:00
parent e36ad8d068
commit bdbf874463
3 changed files with 31 additions and 0 deletions

View File

@ -85,6 +85,22 @@ func (c *conn) Exec(query string, args []driver.Value) (res driver.Result, err e
}
func (c *conn) Prepare(query string) (driver.Stmt, error) {
e := c.next()
// for backwards compatibility, ignore when Prepare not expected
if e == nil {
return &statement{mock.conn, stripQuery(query)}, nil
}
eq, ok := e.(*expectedPrepare)
if !ok {
return &statement{mock.conn, stripQuery(query)}, nil
}
eq.triggered = true
if eq.err != nil {
return nil, eq.err // mocked to return error
}
return &statement{mock.conn, stripQuery(query)}, nil
}