yanic/database/database_test.go

19 lines
298 B
Go
Raw Normal View History

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)
}