From 153c485c9305b8e21e8b545e9299fd3e3f3608fc Mon Sep 17 00:00:00 2001 From: omaus Date: Fri, 10 Mar 2023 13:41:15 +0100 Subject: [PATCH] Delete sample Unit Test --- .../FsSpreadsheet.Tests.fsproj | 1 - tests/FsSpreadsheet.Tests/Sample.fs | 19 ------------------- 2 files changed, 20 deletions(-) delete mode 100644 tests/FsSpreadsheet.Tests/Sample.fs 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}" - - ]