mirror of
https://github.com/e1732a364fed/v2ray_simple.git
synced 2025-12-24 13:27:56 +08:00
16 lines
313 B
Go
16 lines
313 B
Go
package httpLayer_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/e1732a364fed/v2ray_simple/httpLayer"
|
|
)
|
|
|
|
func TestNginxResponse(t *testing.T) {
|
|
t.Log(httpLayer.GetNginx400Response())
|
|
if len(httpLayer.Nginx403_html) != 169 {
|
|
t.Log("len(httpLayer.Nginx403_html)!=169", len(httpLayer.Nginx403_html))
|
|
t.FailNow()
|
|
}
|
|
}
|