authTestSkipAssertAsBasic skips the returned assertion from authTestAssertAsBasic.
(query string, expected []sql.Row, expectedErr string)
| 1605 | |
| 1606 | // authTestSkipAssertAsBasic skips the returned assertion from authTestAssertAsBasic. |
| 1607 | func authTestSkipAssertAsBasic(query string, expected []sql.Row, expectedErr string) ScriptTestAssertion { |
| 1608 | assertion := authTestAssertAsBasic(query, expected, expectedErr) |
| 1609 | assertion.Skip = true |
| 1610 | return assertion |
| 1611 | } |
| 1612 | |
| 1613 | // authTestGrantBasic grants |privileges| to authTestBasicUser on given |object| (include the object type in |object| if |
| 1614 | // applicable). |
no test coverage detected