persimmon-projects / Persimmon

A unit test framework for F# using computation expressions.

Home Page:http://persimmon-projects.github.io/Persimmon/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

パラメタライズドテストのsource内で例外が発生するとPersimmon.Consoleが落ちる

hafuu opened this issue · comments

再現コード

let x() = 3
let y() = failwith "error"

let test = parameterize {
  source [
    x()
    y()
  ]
  run (fun x -> test {
    do! x |> assertEquals 3
  })
}