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