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:
aedampir@gmail.com
2016-03-18 13:49:54 +07:00
parent 6009cc9720
commit a00d08149e
2 changed files with 4 additions and 4 deletions
@@ -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);