docs/modules/ROOT/pages/cops_minitest.adoc in rubocop-minitest-0.11.0 vs docs/modules/ROOT/pages/cops_minitest.adoc in rubocop-minitest-0.11.1
- old
+ new
@@ -445,17 +445,20 @@
|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Pending
-| Yes
| No
+| No
| 0.11
| -
|===
This cop tries to detect when a user accidentally used
`assert` when they meant to use `assert_equal`.
+
+It is marked as unsafe because it is not possible to determine
+whether the second argument of `assert` is a message or not.
=== Examples
[source,ruby]
----