Skip to content

Instantly share code, notes, and snippets.

@wayne-o
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wayne-o/0b4565fcb06f7ac0351b to your computer and use it in GitHub Desktop.
Save wayne-o/0b4565fcb06f7ac0351b to your computer and use it in GitHub Desktop.
[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