aboutsummaryrefslogtreecommitdiff
path: root/tests/pyquick/test_index_rest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pyquick/test_index_rest.py')
-rw-r--r--tests/pyquick/test_index_rest.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/pyquick/test_index_rest.py b/tests/pyquick/test_index_rest.py
deleted file mode 100644
index be0bf183..00000000
--- a/tests/pyquick/test_index_rest.py
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env python
-# coding: utf-8
-#
-#
-
-import requests
-
-HOST = 'http://localhost:3000'
-
-def test_index_get():
- r = requests.get(HOST + '/')
- assert r.status_code == 200
-