Instructs the mock server to initialize user accounts created by this session with given document limit.
(self, count)
| 87 | ) |
| 88 | |
| 89 | def init_document_limit(self, count): |
| 90 | """Instructs the mock server to initialize user accounts created by |
| 91 | this session with given document limit.""" |
| 92 | if self.is_mock_server: |
| 93 | self.headers["mock-server-session-init-document-limit"] = str( |
| 94 | count |
| 95 | ) |
| 96 | |
| 97 | def init_team_document_limit(self, count): |
| 98 | """Instructs the mock server to initialize user accounts created by |
no outgoing calls
no test coverage detected