diff --git a/tests/FsSpreadsheet.Tests/FsSpreadsheet.Tests.fsproj b/tests/FsSpreadsheet.Tests/FsSpreadsheet.Tests.fsproj index a7765051..514a1385 100644 --- a/tests/FsSpreadsheet.Tests/FsSpreadsheet.Tests.fsproj +++ b/tests/FsSpreadsheet.Tests/FsSpreadsheet.Tests.fsproj @@ -8,7 +8,6 @@ - diff --git a/tests/FsSpreadsheet.Tests/Sample.fs b/tests/FsSpreadsheet.Tests/Sample.fs deleted file mode 100644 index 46fa5b20..00000000 --- a/tests/FsSpreadsheet.Tests/Sample.fs +++ /dev/null @@ -1,19 +0,0 @@ -module Tests - -open Expecto - -[] -let tests = - testList "samples" [ - testCase "universe exists (╭ರᴥ•́)" <| fun _ -> - let subject = true - Expect.isTrue subject "I compute, therefore I am." - - testCase "I'm skipped (should skip)" <| fun _ -> - Tests.skiptest "Yup, waiting for a sunny day..." - - testCase "contains things" <| fun _ -> - Expect.containsAll [| 2; 3; 4 |] [| 2; 4 |] - "This is the case; {2,3,4} contains {2,4}" - - ]