add a MockResponse

This commit is contained in:
Andreas Zweili 2021-11-08 22:37:48 +01:00
parent a239a18a8b
commit 6d70b79f27
1 changed files with 12 additions and 0 deletions

12
tests/mocks.py Normal file
View File

@ -0,0 +1,12 @@
import json
class MockResponse:
def __init__(self, data):
self.data = data
# mock json() method always returns a specific testing dictionary
# @staticmethod
def json(self):
return json.loads(self.data)