mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 20:13:40 +00:00
Add pagination support (ApiOptions overloads) to UserKeys client. (#1278)
This commit is contained in:
committed by
Brendan Forster
parent
63a8c1d70a
commit
e35f237214
@@ -17,7 +17,7 @@ namespace Octokit.Tests.Reactive
|
||||
|
||||
client.GetAllForCurrent();
|
||||
|
||||
gitHubClient.User.Keys.Received().GetAllForCurrent();
|
||||
gitHubClient.User.Keys.Received().GetAllForCurrent(Arg.Any<ApiOptions>());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace Octokit.Tests.Reactive
|
||||
|
||||
client.GetAll("auser");
|
||||
|
||||
gitHubClient.User.Keys.Received().GetAll("auser");
|
||||
gitHubClient.User.Keys.Received().GetAll("auser", Arg.Any<ApiOptions>());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user