aboutsummaryrefslogtreecommitdiff
path: root/tests/test_requests_https.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_requests_https.py')
-rwxr-xr-xtests/test_requests_https.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/test_requests_https.py b/tests/test_requests_https.py
deleted file mode 100755
index c6ea8f3..0000000
--- a/tests/test_requests_https.py
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-
-import sys, os
-import json
-import unittest
-
-# Path hack.
-sys.path.insert(0, os.path.abspath('..'))
-import requests
-
-class HTTPSTest(unittest.TestCase):
- """Smoke test for https functionality."""
-
- smoke_url = "https://github.com"
-
- def perform_smoke_test(self, verify=False):
- result = requests.get(self.smoke_url, verify=verify)
- self.assertEqual(result.status_code, 200)
-
- def test_smoke(self):
- """Smoke test without verification."""
- self.perform_smoke_test(verify=False)
-
- def test_smoke_verified(self):
- """Smoke test with SSL verification."""
- self.perform_smoke_test(verify=True)
-
-
-if __name__ == '__main__':
- unittest.main()