mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-20 06:05:12 +00:00
23 lines
524 B
C#
23 lines
524 B
C#
using Octokit.Reactive;
|
|
using System.Net.Http.Headers;
|
|
using System.Reactive.Linq;
|
|
using System.Threading.Tasks;
|
|
using Xunit;
|
|
|
|
namespace Octokit.Tests.Integration
|
|
{
|
|
public class ObservableUserEmailsClientTests
|
|
{
|
|
[IntegrationTest]
|
|
public async Task CanGetEmail()
|
|
{
|
|
var github = Helper.GetAuthenticatedClient();
|
|
|
|
var client = new ObservableUserEmailsClient(github);
|
|
|
|
var email = await client.GetAll();
|
|
Assert.NotNull(email);
|
|
}
|
|
}
|
|
}
|