From 2ce6cfdb7cb6cc3db582ab47853e7255aee596a7 Mon Sep 17 00:00:00 2001 From: Andrea Leopardi Date: Mon, 14 Oct 2024 19:16:46 +0200 Subject: [PATCH] Add "since" docs to ExUnit's :group --- lib/ex_unit/lib/ex_unit/case.ex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ex_unit/lib/ex_unit/case.ex b/lib/ex_unit/lib/ex_unit/case.ex index 17f506a5c4..5058b4ebce 100644 --- a/lib/ex_unit/lib/ex_unit/case.ex +++ b/lib/ex_unit/lib/ex_unit/case.ex @@ -12,10 +12,10 @@ defmodule ExUnit.Case do It should be enabled only if tests do not change any global state. Defaults to `false`. - * `:group` - configures the group this module belongs to. + * `:group` (since v1.18.0) - configures the **group** this module belongs to. Tests in the same group never run concurrently. Tests from different groups (or with no groups) can run concurrently when `async: true` - is given. By default, belongs to no group (defaults to `nil`). + is given. By default, this module belongs to no group (defaults to `nil`). * `:register` - when `false`, does not register this module within ExUnit server. This means the module won't run when ExUnit suite runs.