mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 09:40:24 +08:00
12 lines
182 B
Go
12 lines
182 B
Go
package internal
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestEtcdBuilder_Scheme(t *testing.T) {
|
|
assert.Equal(t, EtcdScheme, new(etcdBuilder).Scheme())
|
|
}
|