diff --git a/src/lib.mo b/src/lib.mo index dc8b787..3968fa6 100644 --- a/src/lib.mo +++ b/src/lib.mo @@ -8,6 +8,12 @@ module { Debug.print("mops:1:end " # name); }; + public func testsys(name : Text, fn : () -> ()) { + Debug.print("mops:1:start " # name); + fn(); + Debug.print("mops:1:end " # name); + }; + public func suite(name : Text, fn : () -> ()) { test(name, fn); }; @@ -18,4 +24,4 @@ module { public let expect = _expect; public let fail = _fail; -}; \ No newline at end of file +};