0
0
mirror of https://github.com/ihabunek/toot.git synced 2025-10-21 19:44:16 -04:00

Reimplement configuration to allow multiple logins

The configuration is now stored in a single json encoded file instead of
separate files.
This commit is contained in:
Ivan Habunek
2018-01-02 10:44:32 +01:00
parent 647a896ab5
commit 6a3c877270
11 changed files with 451 additions and 103 deletions

View File

@@ -30,6 +30,7 @@ class Expectations():
class MockResponse:
def __init__(self, response_data={}, ok=True, is_redirect=False):
self.response_data = response_data
self.content = response_data
self.ok = ok
self.is_redirect = is_redirect