mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-01 18:35:35 +00:00
The names of unit tests has been corrected in order to fit IReleaseClient unit test name convention (Gets prefix -> Requests prefix).
This commit is contained in:
@@ -26,7 +26,7 @@ namespace Octokit.Tests.Clients
|
||||
public class TheGetAllMethod
|
||||
{
|
||||
[Fact]
|
||||
public void GetsAListOfAuthorizations()
|
||||
public void RequestsCorrectUrl()
|
||||
{
|
||||
var client = Substitute.For<IApiConnection>();
|
||||
var authEndpoint = new AuthorizationsClient(client);
|
||||
@@ -39,7 +39,7 @@ namespace Octokit.Tests.Clients
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void GetsAListOfAuthorizationsWithApiOptions()
|
||||
public void RequestsCorrectUrlWithApiOptions()
|
||||
{
|
||||
var client = Substitute.For<IApiConnection>();
|
||||
var authEndpoint = new AuthorizationsClient(client);
|
||||
|
||||
@@ -11,7 +11,7 @@ namespace Octokit.Tests.Reactive
|
||||
public class TheGetAllMethod
|
||||
{
|
||||
[Fact]
|
||||
public void GetsCorrectUrl()
|
||||
public void RequestsCorrectUrl()
|
||||
{
|
||||
var client = Substitute.For<IGitHubClient>();
|
||||
var authEndpoint = new ObservableAuthorizationsClient(client);
|
||||
@@ -23,7 +23,7 @@ namespace Octokit.Tests.Reactive
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void GetsCorrectUrlWithApiOption()
|
||||
public void RequestsCorrectUrlWithApiOption()
|
||||
{
|
||||
var client = Substitute.For<IGitHubClient>();
|
||||
var authEndpoint = new ObservableAuthorizationsClient(client);
|
||||
|
||||
Reference in New Issue
Block a user