File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ RSpec/DescribedClassModuleWrapping:
262
262
Reference : https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/DescribedClassModuleWrapping
263
263
264
264
RSpec/Dialect :
265
- Description : This cop enforces custom RSpec dialects.
265
+ Description : Enforces custom RSpec dialects.
266
266
Enabled : false
267
267
PreferredMethods : {}
268
268
VersionAdded : ' 1.33'
@@ -793,13 +793,13 @@ RSpec/VerifiedDoubles:
793
793
Reference : https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/VerifiedDoubles
794
794
795
795
RSpec/VoidExpect :
796
- Description : This cop checks void `expect()`.
796
+ Description : Checks void `expect()`.
797
797
Enabled : true
798
798
VersionAdded : ' 1.16'
799
799
Reference : https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/VoidExpect
800
800
801
801
RSpec/Yield :
802
- Description : This cop checks for calling a block within a stub.
802
+ Description : Checks for calling a block within a stub.
803
803
Enabled : true
804
804
VersionAdded : ' 1.32'
805
805
Reference : https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/Yield
Original file line number Diff line number Diff line change 810
810
| -
811
811
|===
812
812
813
- This cop enforces custom RSpec dialects.
813
+ Enforces custom RSpec dialects.
814
814
815
815
A dialect can be based on the following RSpec methods:
816
816
@@ -4508,7 +4508,7 @@ end
4508
4508
| -
4509
4509
|===
4510
4510
4511
- This cop checks void `expect()`.
4511
+ Checks void `expect()`.
4512
4512
4513
4513
=== Examples
4514
4514
@@ -4537,7 +4537,7 @@ expect(something).to be(1)
4537
4537
| -
4538
4538
|===
4539
4539
4540
- This cop checks for calling a block within a stub.
4540
+ Checks for calling a block within a stub.
4541
4541
4542
4542
=== Examples
4543
4543
Original file line number Diff line number Diff line change 3
3
module RuboCop
4
4
module Cop
5
5
module RSpec
6
- # This cop enforces custom RSpec dialects.
6
+ # Enforces custom RSpec dialects.
7
7
#
8
8
# A dialect can be based on the following RSpec methods:
9
9
#
Original file line number Diff line number Diff line change 3
3
module RuboCop
4
4
module Cop
5
5
module RSpec
6
- # This cop checks void `expect()`.
6
+ # Checks void `expect()`.
7
7
#
8
8
# @example
9
9
# # bad
Original file line number Diff line number Diff line change 3
3
module RuboCop
4
4
module Cop
5
5
module RSpec
6
- # This cop checks for calling a block within a stub.
6
+ # Checks for calling a block within a stub.
7
7
#
8
8
# @example
9
9
# # bad
You can’t perform that action at this time.
0 commit comments