Resolve issue with harness trying to be used outside of test

This commit is contained in:
Michael Miller 2019-11-10 07:27:59 -07:00
parent 11ea7bf2ce
commit f816a64770

View file

@ -34,27 +34,29 @@ module Spectator::Mocks
%} %}
def {{name}}({{params.splat}}){% if definition.is_a?(TypeDeclaration) %} : {{definition.type}}{% end %} def {{name}}({{params.splat}}){% if definition.is_a?(TypeDeclaration) %} : {{definition.type}}{% end %}
%args = ::Spectator::Mocks::GenericArguments.create({{args.splat}}) if (%harness = ::Spectator::Harness.current?)
%call = ::Spectator::Mocks::GenericMethodCall.new({{name.symbolize}}, %args) %args = ::Spectator::Mocks::GenericArguments.create({{args.splat}})
::Spectator::Harness.current.mocks.record_call(self, %call) %call = ::Spectator::Mocks::GenericMethodCall.new({{name.symbolize}}, %args)
if (%stub = ::Spectator::Harness.current.mocks.find_stub(self, %call)) %harness.mocks.record_call(self, %call)
%stub.call!(%args, typeof({{original}}({{args.splat}}))) if (%stub = ::Spectator::Harness.current.mocks.find_stub(self, %call))
else return %stub.call!(%args, typeof({{original}}({{args.splat}})))
{{original}}({{args.splat}}) end
end end
{{original}}({{args.splat}})
end end
def {{name}}({{params.splat}}){% if definition.is_a?(TypeDeclaration) %} : {{definition.type}}{% end %} def {{name}}({{params.splat}}){% if definition.is_a?(TypeDeclaration) %} : {{definition.type}}{% end %}
%args = ::Spectator::Mocks::GenericArguments.create({{args.splat}}) if (%harness = ::Spectator::Harness.current?)
%call = ::Spectator::Mocks::GenericMethodCall.new({{name.symbolize}}, %args) %args = ::Spectator::Mocks::GenericArguments.create({{args.splat}})
::Spectator::Harness.current.mocks.record_call(self, %call) %call = ::Spectator::Mocks::GenericMethodCall.new({{name.symbolize}}, %args)
if (%stub = ::Spectator::Harness.current.mocks.find_stub(self, %call)) %harness.mocks.record_call(self, %call)
%stub.call!(%args, typeof({{original}}({{args.splat}}) { |*%ya| yield *%ya })) if (%stub = ::Spectator::Harness.current.mocks.find_stub(self, %call))
else return %stub.call!(%args, typeof({{original}}({{args.splat}}) { |*%ya| yield *%ya }))
{{original}}({{args.splat}}) do |*%yield_args|
yield *%yield_args
end end
end end
{{original}}({{args.splat}}) do |*%yield_args|
yield *%yield_args
end
end end
end end
end end