3
我想檢查我的函數返回Some(x)
斷言一些與FsUnit
testedFunc() |> should be (sameAs Some)
testedFunc() |> should be Some
testedFunc() |> should equal Some
所有不起作用。我寧可不使用:
match testedFunc() with
| Some -> Pass()
| None -> Fail()
任何人都知道一種方法來做到這一點?
對於使用引文結束(http://code.google.com/p/unquote/)的對比,看看https://gist.github.com/2366849 – 2012-04-12 12:12:58