Skip to content

Instantly share code, notes, and snippets.

@jamesmh
Created March 8, 2022 03:37
Show Gist options
  • Save jamesmh/96c5dd2f39e72135f80d03069d0709a4 to your computer and use it in GitHub Desktop.
Save jamesmh/96c5dd2f39e72135f80d03069d0709a4 to your computer and use it in GitHub Desktop.
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