Sha256: e5ddb6f58690f7c5a95bc570ecb1bc0ea329cd10bfee48bf457107b4323287fe
Contents?: true
Size: 448 Bytes
Versions: 11
Compression:
Stored size: 448 Bytes
Contents
# encoding: utf-8 require 'fedux_org/stdlib/environment' module ProxyTester module SpecHelper module Environment include FeduxOrg::Stdlib::Environment alias_method :with_environment, :isolated_environment def mock_stdin(&block) old_stdin = $stdin $stdin = double('stdin') block.call ensure $stdin = old_stdin end end end end World(ProxyTester::SpecHelper::Environment)
Version data entries
11 entries across 11 versions & 1 rubygems