mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
45 lines
866 B
Crystal
45 lines
866 B
Crystal
|
require "../../spec_helper"
|
||
|
|
||
|
module Ameba::Rules
|
||
|
subject = UnlessElse.new
|
||
|
|
||
|
describe UnlessElse do
|
||
|
it "passes if unless hasn't else" do
|
||
|
s = Source.new %(
|
||
|
unless something
|
||
|
:ok
|
||
|
end
|
||
|
)
|
||
|
subject.catch(s).valid?.should be_true
|
||
|
end
|
||
|
|
||
|
it "fails if unless has else" do
|
||
|
s = Source.new %(
|
||
|
unless something
|
||
|
:one
|
||
|
else
|
||
|
:two
|
||
|
end
|
||
|
)
|
||
|
subject.catch(s).valid?.should be_false
|
||
|
end
|
||
|
|
||
|
it "reports rule, pos and message" do
|
||
|
s = Source.new %(
|
||
|
unless something
|
||
|
:one
|
||
|
else
|
||
|
:two
|
||
|
end
|
||
|
)
|
||
|
subject.catch(s)
|
||
|
|
||
|
error = s.errors.first
|
||
|
error.should_not be_nil
|
||
|
error.rule.should_not be_nil
|
||
|
error.pos.should eq 2
|
||
|
error.message.should eq "Favour if over unless with else"
|
||
|
end
|
||
|
end
|
||
|
end
|