mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
25 lines
478 B
Crystal
25 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
|