diff options
author | skyblue <ssx205@gmail.com> | 2014-03-31 16:24:58 +0800 |
---|---|---|
committer | skyblue <ssx205@gmail.com> | 2014-03-31 16:24:58 +0800 |
commit | 9acc1c33be76b05231ec3a5a222af02484689974 (patch) | |
tree | 80d3ecab43506e03405c742a84dcc61f474e2212 /tests/pyquick/test_index_rest.py | |
parent | 587e6d80890f9e679b13a1511dab6635fd520775 (diff) |
add go functest
Diffstat (limited to 'tests/pyquick/test_index_rest.py')
-rw-r--r-- | tests/pyquick/test_index_rest.py | 13 |
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 - |