mirror of
https://github.com/openziti/ziti.git
synced 2026-09-11 01:05:42 +00:00
19 lines
488 B
Go
19 lines
488 B
Go
//go:build manual
|
|
|
|
package test
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestSimpleWebService(t *testing.T) {
|
|
fmt.Println()
|
|
fmt.Println("----------------------------------------------------------------")
|
|
fmt.Println(" test has moved to ./ziti/cmd/edge/quickstart_manual_test.go. ")
|
|
fmt.Println("----------------------------------------------------------------")
|
|
fmt.Println()
|
|
fmt.Println("Run this command instead:")
|
|
panic("go test -tags \"quickstart manual\" ./ziti/cmd/edge/...")
|
|
}
|