aboutsummaryrefslogtreecommitdiffstats
path: root/src/k8splugin/api
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2018-09-14 14:33:28 -0700
committerVictor Morales <victor.morales@intel.com>2018-09-14 14:33:28 -0700
commitb338d303aa7078a84d50989ddc845a6ce938accf (patch)
treea617dbbd2b9f0d26617351c367a2ca78a27f44f4 /src/k8splugin/api
parentcb64a5fed1b10daa301235a2ef956b4805da99d3 (diff)
Separate tests
The current tests can be separated in two categories: unit test and integration tests. The criteria depends on the scope or dependencies required for the test. This change provides a mechanism to test only one category. Change-Id: Ib7bac49cb0b2d14544fb9704345436a7ba71aead Signed-off-by: Victor Morales <victor.morales@intel.com> Issue-ID: MULTICLOUD-301
Diffstat (limited to 'src/k8splugin/api')
-rw-r--r--src/k8splugin/api/handler_test.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/k8splugin/api/handler_test.go b/src/k8splugin/api/handler_test.go
index df573d94..8d990daa 100644
--- a/src/k8splugin/api/handler_test.go
+++ b/src/k8splugin/api/handler_test.go
@@ -1,3 +1,5 @@
+// +build unit
+
/*
Copyright 2018 Intel Corporation.
Licensed under the Apache License, Version 2.0 (the "License");
@@ -16,12 +18,13 @@ package api
import (
"bytes"
"encoding/json"
- "k8s.io/client-go/kubernetes"
"net/http"
"net/http/httptest"
"reflect"
"testing"
+ "k8s.io/client-go/kubernetes"
+
"k8splugin/csar"
"k8splugin/db"
)