mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Address Ameba issue
This commit is contained in:
parent
9eb2946be6
commit
ae8421c29e
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ require "../../spec_helper"
|
|||
Spectator.describe Spectator::ProcStub do
|
||||
let(method_call) { Spectator::MethodCall.capture(:foo) }
|
||||
let(location) { Spectator::Location.new(__FILE__, __LINE__) }
|
||||
let(proc) { Proc(Spectator::AbstractArguments, Int32).new { |args| @call_count += 1 } }
|
||||
let(proc) { Proc(Spectator::AbstractArguments, Int32).new { @call_count += 1 } }
|
||||
subject(stub) { described_class.new(:foo, proc, location: location) }
|
||||
|
||||
@call_count = 0
|
||||
|
|
Loading…
Reference in a new issue