(t *testing.T)
| 56 | } |
| 57 | |
| 58 | func TestRunWithBaseRunner(t *testing.T) { |
| 59 | sb := StatementBuilder.RunWith(fakeBaseRunner{}) |
| 60 | _, err := sb.Select("test").Exec() |
| 61 | assert.NoError(t, err) |
| 62 | } |
| 63 | |
| 64 | func TestRunWithBaseRunnerQueryRowError(t *testing.T) { |
| 65 | sb := StatementBuilder.RunWith(fakeBaseRunner{}) |