```nim import testes func failcase(path: string): string {.compileTime.} = raise newException(ValueError, "nope.") suite "testes": block: expect ValueError: failcase("some string") ```