FunctionalCuid/FunctionalCuid.Tests/Program.fs

18 lines
322 B
Forth
Raw Normal View History

2017-12-06 04:01:51 +00:00

open Expecto
// these tests are bad, and I should feel bad...
let tests =
testList "Smoke Tests" [
test "Generate a CUID" {
Cuid.cuid () |> ignore
}
test "Generate a slug" {
Cuid.slug () |> ignore
}
]
[<EntryPoint>]
let main argv =
runTestsWithArgs defaultConfig argv tests