12345678910111213141516171819 |
- // +build mysql
- package sql
- import (
- "testing"
- "github.com/cloudflare/cfssl/certdb/testdb"
- )
- func TestMySQL(t *testing.T) {
- db := testdb.MySQLDB()
- ta := TestAccessor{
- Accessor: NewAccessor(db),
- DB: db,
- }
- testEverything(ta, t)
- }
|