diff --git a/src/spectator/anything.cr b/src/spectator/anything.cr new file mode 100644 index 0000000..511a024 --- /dev/null +++ b/src/spectator/anything.cr @@ -0,0 +1,15 @@ +module Spectator + struct Anything + def ==(other) + true + end + + def ===(other) + true + end + + def =~(other) + true + end + end +end