(t *testing.T)
| 105 | } |
| 106 | |
| 107 | func TestDebugSqlizerUpdateQuestion(t *testing.T) { |
| 108 | testDebugUpdateSQL.PlaceholderFormat(Question) |
| 109 | assert.Equal(t, expectedDebugUpateSQL, DebugSqlizer(testDebugUpdateSQL)) |
| 110 | } |
| 111 | |
| 112 | var testDebugDeleteSQL = Delete("table").Where(And{ |
| 113 | Eq{"column": "val"}, |
nothing calls this directly
no test coverage detected
searching dependent graphs…