1
我想編寫一個函數來分解出一些共同的事實說明,這樣動態計算的midje事實
(defn check-odd-and-positive
[n]
(fact (str n " not odd") n => odd?)
(fact (str n " not positive") n => positive?))
(facts "about the answer"
(check-odd-and-positive 42))
但它不會導致「42不奇」作爲事實的描述。我知道用表格事實可以達到類似的效果,但我希望能夠在事實小組中分享這樣的事實。