aboutsummaryrefslogtreecommitdiff
path: root/test/utils_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/utils_test.py')
-rw-r--r--test/utils_test.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/utils_test.py b/test/utils_test.py
index 65d3d177..be9e6bf8 100644
--- a/test/utils_test.py
+++ b/test/utils_test.py
@@ -18,19 +18,19 @@ class UtilsTests(unittest.TestCase):
def test_options_get(self):
self.assertEqual(requests.get(self.url_options).status_code, 200)
- def test_options_write(self):
- response = requests.get(self.url_options)
- self.assertEqual(response.status_code, 200)
+ # def test_options_write(self):
+ # response = requests.get(self.url_options)
+ # self.assertEqual(response.status_code, 200)
- pre_value = response.json()["send_seed"]
+ # pre_value = response.json()["send_seed"]
- self.assertEqual(requests.post(self.url_options, json={"send_seed":not pre_value}).status_code, 200)
+ # self.assertEqual(requests.post(self.url_options, json={"send_seed":not pre_value}).status_code, 200)
- response = requests.get(self.url_options)
- self.assertEqual(response.status_code, 200)
- self.assertEqual(response.json()["send_seed"], not pre_value)
+ # response = requests.get(self.url_options)
+ # self.assertEqual(response.status_code, 200)
+ # self.assertEqual(response.json()["send_seed"], not pre_value)
- requests.post(self.url_options, json={"send_seed": pre_value})
+ # requests.post(self.url_options, json={"send_seed": pre_value})
def test_cmd_flags(self):
self.assertEqual(requests.get(self.url_cmd_flags).status_code, 200)