def test_get(self):
     flow = tflow.tflow(req=req_get())
     python_equals("data/test_flow_export/locust_task_get.py", export.locust_task(flow))
 def test_patch(self):
     flow = tflow.tflow(req=req_patch())
     python_equals("data/test_flow_export/locust_task_patch.py", export.locust_task(flow))
Beispiel #3
0
 def test_get(self):
     flow = tflow.tflow(req=req_get())
     python_equals("data/test_flow_export/locust_task_get.py",
                   export.locust_task(flow))
Beispiel #4
0
 def test_patch(self):
     flow = tflow.tflow(req=req_patch())
     python_equals("data/test_flow_export/locust_task_patch.py",
                   export.locust_task(flow))
 def test_post(self):
     flow = tflow.tflow(req=req_post())
     python_equals("mitmproxy/data/test_flow_export/locust_task_post.py", export.locust_task(flow))
 def test_post(self):
     flow = tutils.tflow(req=req_post())
     python_equals("data/test_flow_export/locust_task_post.py",
                   export.locust_task(flow))
Beispiel #7
0
 def test_patch(self, patch_request):
     python_equals("mitmproxy/data/test_flow_export/locust_task_patch.py",
                   export.locust_task(patch_request))
Beispiel #8
0
 def test_post(self, post_request):
     python_equals("mitmproxy/data/test_flow_export/locust_task_post.py",
                   export.locust_task(post_request))
Beispiel #9
0
 def test_get(self, get_request):
     python_equals("mitmproxy/data/test_flow_export/locust_task_get.py",
                   export.locust_task(get_request))