Last active
August 29, 2015 14:01
Revisions
-
wayne-o revised this gist
May 25, 2014 . 1 changed file with 15 additions and 14 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,17 +1,18 @@ [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(); } -
wayne-o created this gist
May 25, 2014 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ 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(); }