chore: add more tests (#2800)

This commit is contained in:
Kevin Wan
2023-01-17 09:59:42 +08:00
committed by GitHub
parent 2bfecf9354
commit 4bed34090f
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package internal
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestEtcdBuilder_Scheme(t *testing.T) {
assert.Equal(t, EtcdScheme, new(etcdBuilder).Scheme())
}