FunctionalCuid/FunctionalCuid.Tests/Program.fs
Daniel J. Summers e88d9cf3f4 Initial code commit
proof of concept
2017-12-05 22:01:51 -06:00

18 lines
322 B
Forth

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