Skip to content

Commit

Permalink
added failing case for future xunit async w/george
Browse files Browse the repository at this point in the history
  • Loading branch information
isidore committed Nov 26, 2013
1 parent c15c012 commit 07c55b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 8 additions & 0 deletions ApprovalTests.Xunit/Namer/XunitStackTraceNamerTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ public async Task FullAsyncTest()
Approvals.Verify("Async");
}

[Fact(Skip = "This is Hard")]
public async Task ProperFullAsyncTest()
{
await Task.Delay(10);

Approvals.Verify("Async with Delay");
}

private static Task AnAsyncMethod()
{
return Task.FromResult(default(object));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,3 @@ private static void FailLoudly(string msg)
}
}
}

}

0 comments on commit 07c55b3

Please sign in to comment.