We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8e272e commit 99ce123Copy full SHA for 99ce123
tests/FSharpLint.Core.Tests/Rules/Smells/NoAsyncRunSynchronouslyInLibrary.fs
@@ -135,6 +135,13 @@ let Foo() =
135
[<TestFixture>]
136
type TestNoAsyncRunSynchronouslyInLibraryHeuristic() =
137
138
+ [<Test>]
139
+ member this.``Unlikely to be library if contains "tests" in name``() =
140
+ Assert.AreEqual(
141
+ LibraryHeuristicResultByProjectName.Unlikely,
142
+ howLikelyProjectIsLibrary "IntegrationTests"
143
+ )
144
+
145
[<Test>]
146
member this.``Unlikely to be library if contains "test" in name``() =
147
Assert.AreEqual(
0 commit comments