mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
24 lines
554 B
Crystal
24 lines
554 B
Crystal
require "../spec_helper"
|
|
|
|
Spectator.describe Spectator::Anything do
|
|
it "matches everything" do
|
|
expect(true).to match(subject)
|
|
expect(false).to match(subject)
|
|
expect(nil).to match(subject)
|
|
expect(42).to match(subject)
|
|
expect(42.as(Int32 | String)).to match(subject)
|
|
expect(["foo", "bar"]).to match(subject)
|
|
end
|
|
|
|
describe "#to_s" do
|
|
subject { super.to_s }
|
|
|
|
it { is_expected.to contain("anything") }
|
|
end
|
|
|
|
describe "#inspect" do
|
|
subject { super.inspect }
|
|
|
|
it { is_expected.to contain("anything") }
|
|
end
|
|
end
|