(t *testing.T)
| 97 | } |
| 98 | |
| 99 | func TestSimpleSelect(t *testing.T) { |
| 100 | assertVals( |
| 101 | t, |
| 102 | sb.Select("v").From("squirrel_integration"), |
| 103 | "foo", "bar", "foo", "baz") |
| 104 | } |
| 105 | |
| 106 | func TestEq(t *testing.T) { |
| 107 | s := sb.Select("v").From("squirrel_integration") |
nothing calls this directly
no test coverage detected
searching dependent graphs…