Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ github_rest_api/
_test_result_receivers.pony -- Async tests for result receiver actors
_test_mock_http_server.pony -- Mock HTTPS server infrastructure for request actor tests
_test_request_actors.pony -- Integration tests for all four request actor types
_test_search_and_pagination.pony -- Converter unit tests + mock HTTP pagination behavior tests
request/ -- HTTP request infrastructure (temporary home, intended to be extracted to its own library)
credentials.pony -- Credentials (lori.TCPConnectAuth + token + optional ssl_ctx), ResultReceiver
_ssl.pony -- SSLContextFactory (shared SSL context creation, fallback when Credentials.ssl_ctx is None)
Expand Down
8 changes: 8 additions & 0 deletions github_rest_api/_test.pony
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,14 @@ actor \nodoc\ Main is TestList
test(_TestLinkedFailure)
test(_TestBearerTokenSent)
test(_TestNoTokenNoAuthHeader)
test(_TestSearchConverterExtractsLinks)
test(_TestSearchConverterNoLinks)
test(_TestListConverterExtractsLinks)
test(_TestListConverterNoLinks)
test(_TestSearchNextPageFollowsLink)
test(_TestSearchPrevPageFollowsLink)
test(_TestListNextPageFollowsLink)
test(_TestListPrevPageFollowsLink)
req.QueryParamsTests.make().tests(test)

class \nodoc\ _TestExtractPaginationLinksNoLinks is UnitTest
Expand Down
Loading