mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-11 05:56:36 +00: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)
|
|
}
|