mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
13 lines
298 B
Crystal
13 lines
298 B
Crystal
|
# Example system to test that doubles as a spy.
|
||
|
# This class tracks calls made to it.
|
||
|
class SpySUT
|
||
|
# Number of times the `#==` method was called.
|
||
|
getter eq_call_count = 0
|
||
|
|
||
|
# Returns true and increments `#eq_call_count`.
|
||
|
def ==(other : T) forall T
|
||
|
@eq_call_count += 1
|
||
|
true
|
||
|
end
|
||
|
end
|