Skip to content
Snippets Groups Projects
Commit 5069a113 authored by Eduard Thamm's avatar Eduard Thamm
Browse files

Auto correct: Style/EmptyMethod in spec

parent 8c93ed92
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -16,8 +16,7 @@ RSpec.describe Guard::Commands::All do
let(:session) { instance_double('Guard::Internals::Session') }
 
class FakePry < Pry::Command
def self.output
end
def self.output; end
end
 
before do
Loading
Loading
Loading
Loading
@@ -6,8 +6,7 @@ RSpec.describe Guard::Commands::Change do
let(:output) { instance_double(Pry::Output) }
 
class FakePry < Pry::Command
def self.output
end
def self.output; end
end
 
before do
Loading
Loading
Loading
Loading
@@ -4,8 +4,7 @@ require 'guard/commands/pause'
 
RSpec.describe Guard::Commands::Pause do
class FakePry < Pry::Command
def self.output
end
def self.output; end
end
 
before do
Loading
Loading
Loading
Loading
@@ -10,8 +10,7 @@ unless Guard::Config.new.strict?
RSpec.describe Guard::Deprecated::Evaluator do
subject do
class TestClass
def evaluate
end
def evaluate; end
end
described_class.add_deprecated(TestClass)
TestClass.new
Loading
Loading
Loading
Loading
@@ -19,8 +19,7 @@ unless Guard::Config.new.strict?
 
subject do
module TestModule
def self.listener
end
def self.listener; end
 
def self._pluginless_guardfile?
false
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment