Skip to content

ex_unit: Add since to :parameterize documentation #13803

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/ex_unit/lib/ex_unit/case.ex
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ defmodule ExUnit.Case do
* `:register` - when `false`, does not register this module within
ExUnit server. This means the module won't run when ExUnit suite runs.

* `:parameterize` - a list of maps to parameterize tests. If both
`:async` and `:parameterize` are given, the different parameters
run concurrently. See the "Parameterized tests" section below for
more information.
* `:parameterize` (since v1.18.0) - a list of maps to parameterize tests.
If both `:async` and `:parameterize` are given, the different parameters
run concurrently. See the "Parameterized tests" section below for more
information.

> #### `use ExUnit.Case` {: .info}
>
Expand Down
Loading