On Thu, 17 Aug 2023, Jérémy Korwin-Zmijowski.fr <jer...@korwin-zmijowski.fr> wrote: > Hello Guilers, > > As I understand, a test-group form should work as follow: > > (use-module (srfi srfi-64)) > (test-group "foo" (test-assert #t)) > > But evaluating the previous expressions raises an exception.
IIRC, test-group must be in between a test-begin/test-end pair forms? --8<---------------cut here---------------start------------->8--- (use-modules (srfi srfi-64)) (test-begin "bar") (test-group "foo" (test-assert #t)) (test-end "bar") --8<---------------cut here---------------end--------------->8--- -- Olivier Dion oldiob.dev