(t *testing.T)
| 26 | } |
| 27 | |
| 28 | func TestDialectMariaDB_IsValidDialect(t *testing.T) { |
| 29 | if !keywords.IsValidDialect("mariadb") { |
| 30 | t.Error("IsValidDialect(\"mariadb\") returned false") |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | func TestDialectMariaDB_InheritsMySQL(t *testing.T) { |
| 35 | kw := keywords.New(keywords.DialectMariaDB, true) |
nothing calls this directly
no test coverage detected