2013-01-11 96 views
0

在建築org.specs2.Specification斯卡拉Specs2將片段動態

我使用加入brik盒這樣的:

def is = "My Spec".title^method1^method2^end 

其中methodN包含這樣的事情:

a must be "expected string" 

在我來說,我面對method2依賴於method2的執行所依賴的問題。改寫:method2返回必須推遲的Fragment,直到method1完成執行。

有沒有這方面的最佳做法?

回答

0

定期它應該寫成如下:

def is = "My Spec".title^"1" ! method1^"2" ! method2^end 

但你有意向做,而不是你的方法是什麼?

+0

Still id does not resolve deferrable execution of the Specification – Stas