mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
37 lines
1,014 B
Crystal
37 lines
1,014 B
Crystal
require "../../spec_helper"
|
|
|
|
module Ameba::Rules
|
|
subject = TrailingBlankLines.new
|
|
|
|
describe TrailingBlankLines do
|
|
it "passes if there is no blank lines at the end" do
|
|
source = Source.new "no-blankline"
|
|
subject.catch(source).should be_valid
|
|
end
|
|
|
|
it "fails if there is a blank line at the end of a source" do
|
|
source = Source.new "a = 1\n \n "
|
|
subject.catch(source).should_not be_valid
|
|
end
|
|
|
|
it "passes if source is empty" do
|
|
source = Source.new ""
|
|
subject.catch(source).should be_valid
|
|
end
|
|
|
|
it "passes if last line is not blank" do
|
|
source = Source.new "\n\n\n puts 22"
|
|
subject.catch(source).should be_valid
|
|
end
|
|
|
|
it "reports rule, pos and message" do
|
|
source = Source.new "a = 1\n\n "
|
|
subject.catch(source).should_not be_valid
|
|
|
|
error = source.errors.first
|
|
error.rule.should_not be_nil
|
|
error.pos.should eq 3
|
|
error.message.should eq "Blank lines detected at the end of the file"
|
|
end
|
|
end
|
|
end
|