mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Remove DummyMatchData
No longer needed since MatchData was changed to non-abstract.
This commit is contained in:
parent
a06247bb1e
commit
ab1c0269e0
1 changed files with 0 additions and 32 deletions
|
@ -1,32 +0,0 @@
|
||||||
module Spectator::Matchers
|
|
||||||
# Match data that does nothing.
|
|
||||||
# This is to workaround a Crystal compiler bug.
|
|
||||||
# See: [Issue 4225](https://github.com/crystal-lang/crystal/issues/4225)
|
|
||||||
# If there are no concrete implementations of an abstract class,
|
|
||||||
# the compiler gives an error.
|
|
||||||
# The error indicates an abstract method is undefined.
|
|
||||||
# This class shouldn't be used, it's just to trick the compiler.
|
|
||||||
private struct DummyMatchData < MatchData
|
|
||||||
# Creates the match data.
|
|
||||||
def initialize
|
|
||||||
super(false)
|
|
||||||
end
|
|
||||||
|
|
||||||
# Dummy values.
|
|
||||||
def named_tuple
|
|
||||||
{
|
|
||||||
you: "shouldn't be calling this.",
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
# Dummy message.
|
|
||||||
def message
|
|
||||||
"You shouldn't be calling this."
|
|
||||||
end
|
|
||||||
|
|
||||||
# Dummy message
|
|
||||||
def negated_message
|
|
||||||
"You shouldn't be calling this."
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
Loading…
Reference in a new issue