mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
28 lines
766 B
Crystal
28 lines
766 B
Crystal
require "../../spec_helper"
|
|
|
|
module Ameba::Rules
|
|
subject = LineLength.new
|
|
long_line = "*" * 80
|
|
|
|
describe LineLength do
|
|
it "passes if all lines are shorter than 80 symbols" do
|
|
source = Source.new "", "short line"
|
|
subject.catch(source).valid?.should be_true
|
|
end
|
|
|
|
it "fails if there is at least one line longer than 79 symbols" do
|
|
source = Source.new "", long_line
|
|
subject.catch(source).valid?.should be_false
|
|
end
|
|
|
|
it "reports rule, pos and message" do
|
|
source = Source.new "", long_line
|
|
subject.catch(source).valid?.should be_false
|
|
|
|
error = source.errors.first
|
|
error.rule.should eq subject
|
|
error.pos.should eq 1
|
|
error.message.should eq "Line too long (80 symbols)"
|
|
end
|
|
end
|
|
end
|