sql_mysql_test.go 248 B

12345678910111213141516171819
  1. // +build mysql
  2. package sql
  3. import (
  4. "testing"
  5. "github.com/cloudflare/cfssl/certdb/testdb"
  6. )
  7. func TestMySQL(t *testing.T) {
  8. db := testdb.MySQLDB()
  9. ta := TestAccessor{
  10. Accessor: NewAccessor(db),
  11. DB: db,
  12. }
  13. testEverything(ta, t)
  14. }