(c *C)
| 89 | } |
| 90 | |
| 91 | func (*SqlParseSuite) TestJustComment(c *C) { |
| 92 | for _, test := range justAComment { |
| 93 | _, err := ParseMigration(strings.NewReader(test)) |
| 94 | c.Assert(err, NotNil) |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | func (*SqlParseSuite) TestCustomTerminator(c *C) { |
| 99 | LineSeparator = "GO" |
nothing calls this directly
no test coverage detected