Sha256: 44ed214e8b88abeb2ded3beab079f8727a318b8e000d9d424c7f771ef3a5550c
Contents?: true
Size: 615 Bytes
Versions: 12
Compression:
Stored size: 615 Bytes
Contents
require 'minitest/autorun' require 'config/environment' # Pry testing stuff (taken from Pry itself) Pry.color = false def redirect_pry_io(new_in, new_out = StringIO.new) old_in = Pry.input old_out = Pry.output Pry.input = new_in Pry.output = new_out begin yield ensure Pry.input = old_in Pry.output = old_out end end def mock_pry(*args) binding = args.first.is_a?(Binding) ? args.shift : binding() input = StringIO.new(args.join("\n")) output = StringIO.new redirect_pry_io(input, output) do Pry.start(binding, :hooks => Pry::Hooks.new) end output.string end
Version data entries
12 entries across 12 versions & 3 rubygems