todoist_interface/tests/mocks.py

13 lines
238 B
Python

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)