Bound paged retrieval responses
This commit is contained in:
parent
176b2d2784
commit
529accf858
15 changed files with 1567 additions and 30 deletions
|
|
@ -39,6 +39,20 @@ class DocForgeCliTests(unittest.TestCase):
|
|||
]
|
||||
)
|
||||
self.assertEqual(7, arguments.limit)
|
||||
context = parser.parse_args(
|
||||
[
|
||||
"--project-root",
|
||||
"/tmp/project",
|
||||
"context",
|
||||
"active",
|
||||
"--limit",
|
||||
"7",
|
||||
"--cursor",
|
||||
"opaque",
|
||||
]
|
||||
)
|
||||
self.assertEqual(7, context.limit)
|
||||
self.assertEqual("opaque", context.cursor)
|
||||
|
||||
def test_reindex_apply_and_visualization_commands_are_self_service(self) -> None:
|
||||
with tempfile.TemporaryDirectory() as directory:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue