只有立即模块的doctests

时间:2017-12-15 13:04:41

标签: haskell testing doctest

如果我有三个模块:

-- A.hs
module A where
-- $
-- >>> True
-- True

-- B.hs
module B where
import A
-- $
-- >>> True
-- True

-- C.hs
module C where
import B
-- $
-- >>> True
-- True

运行doctest C.hs将运行所有三个文件中的所有doctests。

$ doctest C.hs
Examples: 3  Tried: 3  Errors: 0  Failures: 0

有没有办法只在顶层模块上运行doctest - 也就是说,不能递归搜索包含模块中的测试?

0 个答案:

没有答案