New rule: trailing whitespace

This commit is contained in:
Vitalii Elenhaupt 2017-10-30 22:35:11 +02:00
parent f7fc34db19
commit 7d3d0902e5
No known key found for this signature in database
GPG key ID: 7558EF3A4056C706
4 changed files with 41 additions and 3 deletions

View file

@ -0,0 +1,27 @@
require "../../spec_helper"
module Ameba::Rules
subject = TrailingWhitespace.new
describe TrailingWhitespace do
it "passes if all lines do not have trailing whitespace" do
source = Source.new "", "no-whispace"
subject.catch(source).valid?.should be_true
end
it "fails if there is a line with trailing whitespace" do
source = Source.new "", "whitespace at the end "
subject.catch(source).valid?.should be_false
end
it "reports rule, pos and message" do
source = Source.new "", "a = 1\n b = 2 "
subject.catch(source).valid?.should be_false
error = source.errors.first
error.rule.should_not be_nil
error.pos.should eq 2
error.message.should eq "Trailing whitespace detected"
end
end
end