Skip to content

Instantly share code, notes, and snippets.

@wayne-o
Last active August 29, 2015 14:01
[Test]
public async void CanGetAccount()
{
var user = await Client.PostAsync(new PostUserAccountRequest
{
Name = UserName,
Slug = UserName,
Username = UserName,
ThirdPartyUsername = UserName
});
var response = await Client.GetAsync(new GetUserAccountRequest
{
Id = user.Results[0].Id
});
response.Results[0].Id.Should().NotBeNull();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment