summaryrefslogtreecommitdiffstats
path: root/pike/pike/samples/tests.py
diff options
context:
space:
mode:
authorHaibin Huang <haibin.huang@intel.com>2019-07-11 08:22:04 +0000
committerBin Yang <bin.yang@windriver.com>2019-08-15 05:26:26 +0000
commit6068af3fd3513fb330bdf98f53b63bea909281e1 (patch)
tree775cca85e8c7fc63e9d1edd2b31ccbde80432a6c /pike/pike/samples/tests.py
parent0f9836f80ea187a1cef23f570f8505c54b19fdcf (diff)
upgrading python2 to python3 for openstack plugin
Issue-ID: MULTICLOUD-702 Change-Id: I9ac26b51a4be7d70d368dd039bfe1b7857114793 Signed-off-by: Haibin Huang <haibin.huang@intel.com>
Diffstat (limited to 'pike/pike/samples/tests.py')
-rw-r--r--pike/pike/samples/tests.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/pike/pike/samples/tests.py b/pike/pike/samples/tests.py
index 02c59247..4258e257 100644
--- a/pike/pike/samples/tests.py
+++ b/pike/pike/samples/tests.py
@@ -1,3 +1,6 @@
+'''
+pike sample test
+'''
# Copyright (c) 2017-2018 Wind River Systems, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -18,7 +21,11 @@ from rest_framework import status
class SampleViewTest(unittest.TestCase):
+ '''
+ Sample view test
+ '''
def setUp(self):
+
self.client = Client()
def tearDown(self):