19 lines
298 B
Go
19 lines
298 B
Go
package database
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRegister(t *testing.T) {
|
|
assert := assert.New(t)
|
|
assert.Len(Adapters, 0)
|
|
|
|
RegisterAdapter("blub", func(config map[string]interface{}) (Connection, error) {
|
|
return nil, nil
|
|
})
|
|
|
|
assert.Len(Adapters, 1)
|
|
}
|