(c *C)
| 82 | } |
| 83 | |
| 84 | func (*SqlParseSuite) TestIntentionallyBadStatements(c *C) { |
| 85 | for _, test := range intentionallyBad { |
| 86 | _, err := ParseMigration(strings.NewReader(test)) |
| 87 | c.Assert(err, NotNil) |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | func (*SqlParseSuite) TestJustComment(c *C) { |
| 92 | for _, test := range justAComment { |
nothing calls this directly
no test coverage detected