sql_mysql_test.go 265 B

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