mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
18 lines
429 B
C#
18 lines
429 B
C#
using System.Threading.Tasks;
|
|
using Xunit;
|
|
|
|
namespace Octokit.Tests.Integration.Clients
|
|
{
|
|
public class GitIgnoreClientTests
|
|
{
|
|
[IntegrationTest]
|
|
public async Task ReturnsListOfGitIgnoreTemplates()
|
|
{
|
|
var github = Helper.GetAuthenticatedClient();
|
|
|
|
var result = await github.GitIgnore.GetAllGitIgnoreTemplates();
|
|
|
|
Assert.True(result.Count > 2);
|
|
}
|
|
}
|
|
} |