mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Missing args
This commit is contained in:
parent
ac9b3ad1fe
commit
45fe6217b4
2 changed files with 6 additions and 6 deletions
|
@ -52,15 +52,15 @@ module Spectator::Matchers
|
|||
end
|
||||
|
||||
def exactly(count)
|
||||
Count.new(@expected, (count..count))
|
||||
Count.new(@expected, @args, (count..count))
|
||||
end
|
||||
|
||||
def at_least(count)
|
||||
Count.new(@expected, (count..))
|
||||
Count.new(@expected, @args, (count..))
|
||||
end
|
||||
|
||||
def at_most(count)
|
||||
Count.new(@expected, (..count))
|
||||
Count.new(@expected, @args, (..count))
|
||||
end
|
||||
|
||||
def at_least_once
|
||||
|
|
|
@ -52,15 +52,15 @@ module Spectator::Matchers
|
|||
end
|
||||
|
||||
def exactly(count)
|
||||
Count.new(@expected, (count..count))
|
||||
Count.new(@expected, @args, (count..count))
|
||||
end
|
||||
|
||||
def at_least(count)
|
||||
Count.new(@expected, (count..))
|
||||
Count.new(@expected, @args, (count..))
|
||||
end
|
||||
|
||||
def at_most(count)
|
||||
Count.new(@expected, (..count))
|
||||
Count.new(@expected, @args, (..count))
|
||||
end
|
||||
|
||||
def at_least_once
|
||||
|
|
Loading…
Reference in a new issue