Skip to content

Commit

Permalink
Tweak the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
koic committed Sep 23, 2021
1 parent f78ab6d commit 292df25
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions docs/modules/ROOT/pages/cops_minitest.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
== Minitest/AssertEmpty

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -35,7 +35,7 @@ assert_empty(object, 'message')
== Minitest/AssertEmptyLiteral

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand All @@ -62,7 +62,7 @@ assert_empty(object)
== Minitest/AssertEqual

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -92,7 +92,7 @@ assert_equal("rubocop-minitest", actual)
== Minitest/AssertInDelta

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Pending
| Yes
Expand Down Expand Up @@ -124,7 +124,7 @@ assert_in_delta(0.2, actual, 0.001, 'message')
== Minitest/AssertIncludes

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -156,7 +156,7 @@ assert_includes(collection, object, 'message')
== Minitest/AssertInstanceOf

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -188,7 +188,7 @@ assert_instance_of(Class, object, 'message')
== Minitest/AssertKindOf

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Pending
| Yes
Expand Down Expand Up @@ -220,7 +220,7 @@ assert_kind_of(Class, object, 'message')
== Minitest/AssertMatch

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -252,7 +252,7 @@ assert_match(matcher, string, 'message')
== Minitest/AssertNil

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -286,7 +286,7 @@ assert_nil(actual, 'message')
== Minitest/AssertOutput

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Pending
| Yes
Expand Down Expand Up @@ -318,7 +318,7 @@ assert_output(expected) { puts object.method }
== Minitest/AssertPathExists

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Pending
| Yes
Expand Down Expand Up @@ -350,7 +350,7 @@ assert_path_exists(path, 'message')
== Minitest/AssertRespondTo

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -384,7 +384,7 @@ assert_respond_to(self, :do_something)
== Minitest/AssertSilent

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Pending
| Yes
Expand Down Expand Up @@ -414,7 +414,7 @@ assert_silent { puts object.do_something }
== Minitest/AssertTruthy

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -446,7 +446,7 @@ assert(actual, 'message')
== Minitest/AssertWithExpectedArgument

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Pending
| No
Expand Down Expand Up @@ -478,7 +478,7 @@ assert(foo, 'message')
== Minitest/AssertionInLifecycleHook

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Pending
| Yes
Expand Down Expand Up @@ -511,7 +511,7 @@ end
== Minitest/GlobalExpectations

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -545,7 +545,7 @@ _ { musts }.must_raise TypeError
== Minitest/LiteralAsActualArgument

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Pending
| Yes
Expand Down Expand Up @@ -579,7 +579,7 @@ assert_equal [1, 2], foo, 'message'
== Minitest/MultipleAssertions

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Pending
| Yes
Expand Down Expand Up @@ -630,7 +630,7 @@ end
== Minitest/NoAssertions

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Disabled
| Yes
Expand Down Expand Up @@ -662,7 +662,7 @@ end
== Minitest/RefuteEmpty

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -694,7 +694,7 @@ refute_empty(object, 'message')
== Minitest/RefuteEqual

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -725,7 +725,7 @@ refute_equal("rubocop-minitest", actual)
== Minitest/RefuteFalse

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -760,7 +760,7 @@ refute(actual, 'message')
== Minitest/RefuteInDelta

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Pending
| Yes
Expand Down Expand Up @@ -792,7 +792,7 @@ refute_in_delta(0.2, actual, 0.001, 'message')
== Minitest/RefuteIncludes

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -824,7 +824,7 @@ refute_includes(collection, object, 'message')
== Minitest/RefuteInstanceOf

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -856,7 +856,7 @@ refute_instance_of(Class, object, 'message')
== Minitest/RefuteKindOf

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Pending
| Yes
Expand Down Expand Up @@ -888,7 +888,7 @@ refute_kind_of(Class, object, 'message')
== Minitest/RefuteMatch

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -920,7 +920,7 @@ refute_match(matcher, string, 'message')
== Minitest/RefuteNil

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -954,7 +954,7 @@ refute_nil(actual, 'message')
== Minitest/RefutePathExists

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Pending
| Yes
Expand Down Expand Up @@ -986,7 +986,7 @@ refute_path_exists(path, 'message')
== Minitest/RefuteRespondTo

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Enabled
| Yes
Expand Down Expand Up @@ -1020,7 +1020,7 @@ refute_respond_to(self, :do_something)
== Minitest/TestMethodName

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Pending
| Yes
Expand Down Expand Up @@ -1060,7 +1060,7 @@ end
== Minitest/UnreachableAssertion

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Pending
| Yes
Expand Down Expand Up @@ -1092,7 +1092,7 @@ assert_equal('foo', obj.bar)
== Minitest/UnspecifiedException

|===
| Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
| Enabled by default | Safe | Supports autocorrection | Version Added | Version Changed

| Pending
| Yes
Expand Down

0 comments on commit 292df25

Please sign in to comment.