mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-02-28 20:17:57 +00:00
18 lines
275 B
Go
18 lines
275 B
Go
package splithttp_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/xtls/xray-core/transport/internet/splithttp"
|
|
)
|
|
|
|
func Test_GetNormalizedPath(t *testing.T) {
|
|
c := Config{
|
|
Path: "/?world",
|
|
}
|
|
|
|
path := c.GetNormalizedPath()
|
|
if path != "/" {
|
|
t.Error("Unexpected: ", path)
|
|
}
|
|
}
|