| 7 | |
| 8 | |
| 9 | class DummyRequest: |
| 10 | def __init__(self, access_password=None, host=None, port=None, debug=None): |
| 11 | self.access_password = access_password |
| 12 | self.host = host |
| 13 | self.port = port |
| 14 | self.debug = debug |
| 15 | |
| 16 | |
| 17 | class DummyTask: |
no outgoing calls