shard-ameba/spec/ameba/rule_spec.cr
Vitalii Elenhaupt 9bba850a9b
Docs & tests
2017-10-30 22:00:01 +02:00

24 lines
478 B
Crystal

require "../../spec/spec_helper"
module Ameba
describe RULES do
it "contains available rules" do
Ameba::RULES.empty?.should be_false
end
end
describe Rule do
describe "#catch" do
it "accepts and returns source" do
s = Source.new "", ""
DummyRule.new.catch(s).should eq s
end
end
describe "#name" do
it "returns name of the rule" do
DummyRule.new.name.should eq "DummyRule"
end
end
end
end