diff --git a/pkg/assets/assets_test.go b/pkg/assets/assets_test.go new file mode 100644 index 0000000000..4b5b5735ca --- /dev/null +++ b/pkg/assets/assets_test.go @@ -0,0 +1,9 @@ +package assets + +import ( + "testing" +) + +func TestAssets(t *testing.T) { + t.Skip() +} diff --git a/pkg/command/health_test.go b/pkg/command/health_test.go new file mode 100644 index 0000000000..e7ace3f432 --- /dev/null +++ b/pkg/command/health_test.go @@ -0,0 +1,9 @@ +package command + +import ( + "testing" +) + +func TestHealth(t *testing.T) { + t.Skip() +} diff --git a/pkg/command/root_test.go b/pkg/command/root_test.go new file mode 100644 index 0000000000..113d90552c --- /dev/null +++ b/pkg/command/root_test.go @@ -0,0 +1,9 @@ +package command + +import ( + "testing" +) + +func TestRoot(t *testing.T) { + t.Skip() +} diff --git a/pkg/command/server_test.go b/pkg/command/server_test.go new file mode 100644 index 0000000000..4b137232f1 --- /dev/null +++ b/pkg/command/server_test.go @@ -0,0 +1,9 @@ +package command + +import ( + "testing" +) + +func TestServer(t *testing.T) { + t.Skip() +} diff --git a/pkg/handler/config/config_test.go b/pkg/handler/config/config_test.go new file mode 100644 index 0000000000..17f434aed0 --- /dev/null +++ b/pkg/handler/config/config_test.go @@ -0,0 +1,9 @@ +package config + +import ( + "testing" +) + +func TestConfig(t *testing.T) { + t.Skip() +} diff --git a/pkg/handler/metrics/metrics_test.go b/pkg/handler/metrics/metrics_test.go new file mode 100644 index 0000000000..f1111d3edc --- /dev/null +++ b/pkg/handler/metrics/metrics_test.go @@ -0,0 +1,9 @@ +package metrics + +import ( + "testing" +) + +func TestMetrics(t *testing.T) { + t.Skip() +} diff --git a/pkg/handler/static/static_test.go b/pkg/handler/static/static_test.go new file mode 100644 index 0000000000..4547c5e647 --- /dev/null +++ b/pkg/handler/static/static_test.go @@ -0,0 +1,9 @@ +package static + +import ( + "testing" +) + +func TestStatic(t *testing.T) { + t.Skip() +} diff --git a/pkg/middleware/header/header_test.go b/pkg/middleware/header/header_test.go new file mode 100644 index 0000000000..5f8fce26bc --- /dev/null +++ b/pkg/middleware/header/header_test.go @@ -0,0 +1,9 @@ +package header + +import ( + "testing" +) + +func TestHeader(t *testing.T) { + t.Skip() +} diff --git a/pkg/router/debug/debug_test.go b/pkg/router/debug/debug_test.go new file mode 100644 index 0000000000..77bc86af0f --- /dev/null +++ b/pkg/router/debug/debug_test.go @@ -0,0 +1,9 @@ +package debug + +import ( + "testing" +) + +func TestDebug(t *testing.T) { + t.Skip() +} diff --git a/pkg/router/server/server_test.go b/pkg/router/server/server_test.go new file mode 100644 index 0000000000..88d1ddb960 --- /dev/null +++ b/pkg/router/server/server_test.go @@ -0,0 +1,9 @@ +package server + +import ( + "testing" +) + +func TestServer(t *testing.T) { + t.Skip() +}