feat: initial commit from Primus

This commit is contained in:
Jonas Juselius
2022-04-22 13:30:12 +02:00
commit 28ed5ab459
30 changed files with 12244 additions and 0 deletions

18
test/Tests.fs Normal file
View File

@@ -0,0 +1,18 @@
module Tests
open Expecto
let server =
testList
"Server"
[
testCase "Adding valid Todo"
<| fun _ ->
let expectedResult = Ok()
Expect.equal (Ok()) expectedResult "Result should be ok"
]
let all = testList "All" [ server ]
[<EntryPoint>]
let main _ = runTests defaultConfig all