diff --git a/Makefile b/Makefile index f18af8907..33e661b75 100644 --- a/Makefile +++ b/Makefile @@ -123,4 +123,4 @@ docs: cd docs; hugo assets: - mkdir assets/ && curl -slL -o- https://github.com/owncloud/phoenix/releases/download/0.2.1/phoenix.tar.gz | tar xvzf - -C assets/ + mkdir assets/ && curl -slL -o- https://github.com/owncloud/phoenix/releases/download/0.2.3/phoenix.tar.gz | tar xvzf - -C assets/ diff --git a/pkg/assets/assets_test.go b/pkg/assets/assets_test.go new file mode 100644 index 000000000..4b5b5735c --- /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 000000000..e7ace3f43 --- /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 000000000..113d90552 --- /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 000000000..4b137232f --- /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 000000000..17f434aed --- /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 000000000..f1111d3ed --- /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 000000000..4547c5e64 --- /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 000000000..5f8fce26b --- /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 000000000..77bc86af0 --- /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 000000000..88d1ddb96 --- /dev/null +++ b/pkg/router/server/server_test.go @@ -0,0 +1,9 @@ +package server + +import ( + "testing" +) + +func TestServer(t *testing.T) { + t.Skip() +}