我有许多 midje 事实,它们的设置/拆卸几乎但不完全相同。
(against-background [(before :contents (setup!)) (before :contents (data)) (before :facts (set-access)) (after :contents (teardown!)]
(facts "about this thing i am testing "
; ...
))
(against-background [(before :contents (setup!)) (before :contents (data)) (before :facts (set-other-access)) (after :contents (teardown!)]
(facts "about this other thing i am testing "
; ...
))
我想将背景包装成可重用的东西,最好是可参数化的,这样我就可以重用它们,但这样做有困难。Midje 告诉我,除上述之外的任何内容都不是预期的背景形式。