mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-05 00:50:24 +08:00
13 lines
187 B
Go
13 lines
187 B
Go
package edgediscovery
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestProtocolPercentage(t *testing.T) {
|
|
_, err := ProtocolPercentage()
|
|
assert.NoError(t, err)
|
|
}
|