mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
26 lines
546 B
Crystal
26 lines
546 B
Crystal
require "../../spec_helper"
|
|
|
|
module Ameba
|
|
describe Rule::Base 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 "Ameba::DummyRule"
|
|
end
|
|
end
|
|
end
|
|
|
|
describe Rule do
|
|
describe ".rules" do
|
|
it "returns a list of all defined rules" do
|
|
Rule.rules.includes?(DummyRule).should be_true
|
|
end
|
|
end
|
|
end
|
|
end
|