Created
March 8, 2022 03:37
-
-
Save jamesmh/96c5dd2f39e72135f80d03069d0709a4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 characters
public class DummyDatabaseTest : DbTest | |
{ | |
[Fact] | |
void when_the_thing_is_tested_then_we_are_happy() | |
{ | |
Session.Query<User>() | |
.Any(x => x.IsActive) | |
.ShouldBeTrue(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment