1.4.5.2
This commit is contained in:
14
EdgeCommon/pkg/serverconfigs/http_location_ref_test.go
Normal file
14
EdgeCommon/pkg/serverconfigs/http_location_ref_test.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package serverconfigs
|
||||
|
||||
import (
|
||||
"github.com/iwind/TeaGo/logs"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestHTTPLocationRef(t *testing.T) {
|
||||
ref := &HTTPLocationRef{LocationId: 1}
|
||||
logs.PrintAsJSON(ref, t)
|
||||
|
||||
ref.Children = append(ref.Children, &HTTPLocationRef{LocationId: 2}, &HTTPLocationRef{LocationId: 3})
|
||||
logs.PrintAsJSON(ref, t)
|
||||
}
|
||||
Reference in New Issue
Block a user