mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
48 lines
1.3 KiB
Crystal
48 lines
1.3 KiB
Crystal
require "../../../spec_helper"
|
|
|
|
module Ameba::Rule::Lint
|
|
subject = DuplicatedRequire.new
|
|
|
|
describe DuplicatedRequire do
|
|
it "passes if there are no duplicated requires" do
|
|
source = Source.new %(
|
|
require "math"
|
|
require "big"
|
|
require "big/big_decimal"
|
|
)
|
|
subject.catch(source).should be_valid
|
|
end
|
|
|
|
it "reports if there are a duplicated requires" do
|
|
source = Source.new %(
|
|
require "big"
|
|
require "math"
|
|
require "big"
|
|
)
|
|
subject.catch(source).should_not be_valid
|
|
end
|
|
|
|
it "reports rule, pos and message" do
|
|
source = Source.new %(
|
|
require "./thing"
|
|
require "./thing"
|
|
require "./another_thing"
|
|
require "./another_thing"
|
|
), "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:1"
|
|
issue.end_location.to_s.should eq ""
|
|
issue.message.should eq "Duplicated require of `./thing`"
|
|
|
|
issue = source.issues.last
|
|
issue.rule.should_not be_nil
|
|
issue.location.to_s.should eq "source.cr:4:1"
|
|
issue.end_location.to_s.should eq ""
|
|
issue.message.should eq "Duplicated require of `./another_thing`"
|
|
end
|
|
end
|
|
end
|