Instructs the mock server to initialize user accounts created by this session with given character limit.
(self, count)
| 79 | self.headers["mock-server-session-429-count"] = str(count) |
| 80 | |
| 81 | def init_character_limit(self, count): |
| 82 | """Instructs the mock server to initialize user accounts created by |
| 83 | this session with given character limit.""" |
| 84 | if self.is_mock_server: |
| 85 | self.headers["mock-server-session-init-character-limit"] = str( |
| 86 | count |
| 87 | ) |
| 88 | |
| 89 | def init_document_limit(self, count): |
| 90 | """Instructs the mock server to initialize user accounts created by |
no outgoing calls
no test coverage detected