Skip to content

Commit

Permalink
deleting a test that was never implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed Sep 24, 2024
1 parent 26d8211 commit bf506d9
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/ValueTypeTests/StrongTypedId/guid_based_document_operations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,19 +158,6 @@ public async Task load_many_through_linq()
results.Count.ShouldBe(3);
}

[Fact]
public async Task load_many()
{
var invoice1 = new Invoice2{Name = Guid.NewGuid().ToString()};
var invoice2 = new Invoice2{Name = Guid.NewGuid().ToString()};
var invoice3 = new Invoice2{Name = Guid.NewGuid().ToString()};
theSession.Store(invoice1, invoice2, invoice3);

await theSession.SaveChangesAsync();
throw new NotImplementedException();
//var invoices = await theSession.LoadManyAsync<Invoice2>()
}

[Fact]
public async Task delete_by_id()
{
Expand Down

0 comments on commit bf506d9

Please sign in to comment.