We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cba6ac commit 8f89593Copy full SHA for 8f89593
tests/MongoDB.Driver.Tests/Linq/Linq3ImplementationTests/Jira/CSharp4244Tests.cs
@@ -15,16 +15,19 @@
15
16
using System.Linq;
17
using FluentAssertions;
18
+using MongoDB.Driver.Core.TestHelpers.XunitExtensions;
19
using MongoDB.Driver.Linq;
20
using Xunit;
21
22
namespace MongoDB.Driver.Tests.Linq.Linq3ImplementationTests.Jira
23
{
24
public class CSharp4244Tests : Linq3IntegrationTest
25
- [Fact]
26
+ [SkippableFact]
27
public void Where_with_root_should_work()
28
29
+ RequireServer.Check().VersionGreaterThanOrEqualTo("6.0");
30
+
31
var collection = CreateCollection();
32
var person = new Person { Id = 2, Name = "Jane Doe" };
33
0 commit comments