diff --git a/testserver_unsupported.go b/testserver_unsupported.go new file mode 100644 index 0000000..0f503cf --- /dev/null +++ b/testserver_unsupported.go @@ -0,0 +1,14 @@ +// +build windows + +package main + +import ( + "fmt" + + "github.com/urfave/cli" +) + +// testServer is an hidden handler used for integration tests +func testServer(c *cli.Context) error { + return fmt.Errorf("not available on windows") +}