summaryrefslogtreecommitdiffstats
path: root/vio/samples
diff options
context:
space:
mode:
authorbranw <branw@vmware.com>2017-02-22 16:49:06 +0800
committerbranw <branw@vmware.com>2017-02-22 16:49:06 +0800
commit80c5c48c202aec9d36399031408ed4296a07dc84 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /vio/samples
parent79ab09be1ad73061f28d6a40ac680f55b7595cd6 (diff)
revert to clean code base
Change-Id: I60b9f7de75e1d50beaafdb0f543021f4c85abe66 Issue-Id: MULTIVIM-37 Signed-off-by: branw <branw@vmware.com>
Diffstat (limited to 'vio/samples')
-rw-r--r--vio/samples/__init__.py13
-rw-r--r--vio/samples/__init__.pycbin123 -> 0 bytes
-rw-r--r--vio/samples/tests.py32
-rw-r--r--vio/samples/urls.py19
-rw-r--r--vio/samples/urls.pycbin320 -> 0 bytes
-rw-r--r--vio/samples/views.py29
-rw-r--r--vio/samples/views.pycbin806 -> 0 bytes
7 files changed, 0 insertions, 93 deletions
diff --git a/vio/samples/__init__.py b/vio/samples/__init__.py
deleted file mode 100644
index 54147e8..0000000
--- a/vio/samples/__init__.py
+++ /dev/null
@@ -1,13 +0,0 @@
-# Copyright 2017 VMware Corporation.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
diff --git a/vio/samples/__init__.pyc b/vio/samples/__init__.pyc
deleted file mode 100644
index 7329b4c..0000000
--- a/vio/samples/__init__.pyc
+++ /dev/null
Binary files differ
diff --git a/vio/samples/tests.py b/vio/samples/tests.py
deleted file mode 100644
index 79301f1..0000000
--- a/vio/samples/tests.py
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 2016 ZTE Corporation.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-import unittest
-import json
-from django.test import Client
-from rest_framework import status
-
-
-class SampleViewTest(unittest.TestCase):
- def setUp(self):
- self.client = Client()
-
- def tearDown(self):
- pass
-
- def test_sample(self):
- response = self.client.get("/samples/")
- self.assertEqual(status.HTTP_200_OK, response.status_code, response.content)
- resp_data = json.loads(response.content)
- self.assertEqual({"status": "active"}, resp_data)
diff --git a/vio/samples/urls.py b/vio/samples/urls.py
deleted file mode 100644
index 92ad162..0000000
--- a/vio/samples/urls.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 2016 ZTE Corporation.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-from django.conf.urls import url
-from vio.samples import views
-
-urlpatterns = [
- url(r'^samples/$', views.SampleList.as_view()), ]
diff --git a/vio/samples/urls.pyc b/vio/samples/urls.pyc
deleted file mode 100644
index 931994b..0000000
--- a/vio/samples/urls.pyc
+++ /dev/null
Binary files differ
diff --git a/vio/samples/views.py b/vio/samples/views.py
deleted file mode 100644
index f70090f..0000000
--- a/vio/samples/views.py
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 2016 ZTE Corporation.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-import logging
-
-from rest_framework.views import APIView
-from rest_framework.response import Response
-
-logger = logging.getLogger(__name__)
-
-
-class SampleList(APIView):
- """
- List all samples.
- """
- def get(self, request, format=None):
- logger.debug("get")
- return Response({"status": "active"})
diff --git a/vio/samples/views.pyc b/vio/samples/views.pyc
deleted file mode 100644
index 0dd719e..0000000
--- a/vio/samples/views.pyc
+++ /dev/null
Binary files differ