shard-spectator/src/spectator/anything.cr

16 lines
159 B
Crystal
Raw Normal View History

module Spectator
struct Anything
def ==(other)
true
end
def ===(other)
true
end
def =~(other)
true
end
end
end