mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
27 lines
791 B
Crystal
27 lines
791 B
Crystal
require "../../spec_helper"
|
|
|
|
module Ameba::Rule
|
|
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).should be_valid
|
|
end
|
|
|
|
it "fails if there is a line with trailing whitespace" do
|
|
source = Source.new "whitespace at the end "
|
|
subject.catch(source).should_not be_valid
|
|
end
|
|
|
|
it "reports rule, pos and message" do
|
|
source = Source.new "a = 1\n b = 2 ", "source.cr"
|
|
subject.catch(source).should_not be_valid
|
|
|
|
issue = source.issues.first
|
|
issue.rule.should_not be_nil
|
|
issue.location.to_s.should eq "source.cr:2:7"
|
|
issue.message.should eq "Trailing whitespace detected"
|
|
end
|
|
end
|
|
end
|