From dea317c6146de8a794097342912a72e022b21e66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Tue, 2 Jul 2024 22:56:51 +0200 Subject: [PATCH] Add RSpec/EmptyOutput rubocop rule This rule was added in rubocop-rspec 2.29.0. While we never use the `output` matcher, it might actually be a good idea to use it in tests of take tasks, to check the logger output. --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 1a05e4577..388d7aa90 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -565,6 +565,9 @@ RSpec/EmptyLineAfterExampleGroup: Exclude: - spec/factories/**/* +RSpec/EmptyOutput: + Enabled: true + RSpec/ExampleWording: Enabled: true