Sha256: 39a88285072c329d2ba1f0d8a20bb839c8b84365651f996704fd195c12361f7d

Contents?: true

Size: 714 Bytes

Versions: 1

Compression:

Stored size: 714 Bytes

Contents

require 'minitest/spec'
require 'minitest/autorun'

require 'rr'

class MiniTest::Spec
  include RR::Adapters::RRMethods
end

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

1 entries across 1 versions & 1 rubygems

Version Path
pry-rails-0.3.0 spec/spec_helper.rb