テストケースの1つを「保留中」の状態にする必要があります。
テストの実行時に出力に表示できる、JUnit withのような、ある種のメッセージをそれに付けたいと思います@Ignore("Pending: issue #1234 needs to be fixed")
。
Specs2に相当するものはありますか?
class MySpec extends mutable.Specification {
args(skipAll = true) // Can I include a message here in the output somehow?
"cool MyClass feature" should {
"which is broken unfortunately" in {
failure
}
}
}
前もって感謝します!