shard-ameba/spec/ameba/rule/style/unless_else_spec.cr
2021-11-08 14:07:35 -08:00

44 lines
1,011 B
Crystal

require "../../../spec_helper"
module Ameba::Rule::Style
subject = UnlessElse.new
describe UnlessElse do
it "passes if unless hasn't else" do
expect_no_issues subject, <<-CRYSTAL
unless something
:ok
end
CRYSTAL
end
it "fails if unless has else" do
expect_issue subject, <<-CRYSTAL
unless something
# ^^^^^^^^^^^^^^ error: Favour if over unless with else
:one
else
:two
end
CRYSTAL
end
it "reports rule, pos and message" do
s = Source.new %(
unless something
:one
else
:two
end
), "source.cr"
subject.catch(s).should_not be_valid
issue = s.issues.first
issue.should_not be_nil
issue.rule.should_not be_nil
issue.location.to_s.should eq "source.cr:1:1"
issue.end_location.to_s.should eq "source.cr:5:3"
issue.message.should eq "Favour if over unless with else"
end
end
end