New rule: debugger statement

This commit is contained in:
Vitalii Elenhaupt 2017-11-01 14:42:58 +02:00
parent 64ccc7448c
commit 348496ab9d
No known key found for this signature in database
GPG key ID: 7558EF3A4056C706
2 changed files with 64 additions and 0 deletions

View file

@ -0,0 +1,44 @@
require "../../spec_helper"
module Ameba::Rules
subject = DebuggerStatement.new
describe DebuggerStatement do
it "passes if there is no debugger statement" do
s = Source.new %(
"this is not a debugger statement"
s = "debugger"
def debugger(program)
end
debugger ""
class A
def debugger
end
end
A.new.debugger
)
subject.catch(s).valid?.should be_true
end
it "fails if there is a debugger statement" do
s = Source.new %(
a = 2
debugger
a = a + 1
)
subject.catch(s).valid?.should be_false
end
it "reports rule, pos and message" do
s = Source.new "debugger"
subject.catch(s).valid?.should be_false
error = s.errors.first
error.rule.should_not be_nil
error.pos.should eq 1
error.message.should eq "Possible forgotten debugger statement detected"
end
end
end