Sha256: efa2d0bdab34a689eb29c958ab7a34864de70314c24629d3fd131241f52093a0

Contents?: true

Size: 1.06 KB

Versions: 21

Compression:

Stored size: 1.06 KB

Contents

require 'bacon'
require 'bacon/bits'
require 'mocha'
require 'mocha-on-bacon'
require 'hirb'
include Hirb

module TestHelpers
  # set these to avoid invoking stty multiple times which doubles test suite running time
  ENV["LINES"] = ENV["COLUMNS"] = "20"
  def reset_terminal_size
    ENV["LINES"] = ENV["COLUMNS"] = "20"
  end

  def capture_stdout(&block)
    original_stdout = $stdout
    $stdout = fake = StringIO.new
    begin
      yield
    ensure
      $stdout = original_stdout
    end
    fake.string
  end

  def capture_stderr(&block)
    original_stderr = $stderr
    $stderr = fake = StringIO.new
    begin
      yield
    ensure
      $stderr = original_stderr
    end
    fake.string
  end

  def reset_config
    View.instance_eval "@config = nil"
  end
end

class Bacon::Context
  include TestHelpers
end

class String
  def unindent(num=nil)
    regex = num ? /^\s{#{num}}/ : /^\s*/
    gsub(regex, '').chomp
  end
end

# mocks IRB for View + Pager
module ::IRB
  class Irb
    def initialize(context)
      @context = context
    end
    def output_value; end
  end
end

Version data entries

21 entries across 21 versions & 3 rubygems

Version Path
hirb-0.7.0 test/test_helper.rb
hirb-0.6.2 test/test_helper.rb
hirb-0.6.1 test/test_helper.rb
hsume2-hirb-0.6.3 test/test_helper.rb
hsume2-hirb-0.6.2 test/test_helper.rb
hsume2-hirb-0.6.1 test/test_helper.rb
hsume2-hirb-0.6.0.beta.1 test/test_helper.rb
hirb-0.6.0 test/test_helper.rb
hirb-0.5.0 test/test_helper.rb
hirb-0.4.5 test/test_helper.rb
hirb-0.4.4 test/test_helper.rb
hirb-0.4.3 test/test_helper.rb
hirb-0.4.2 test/test_helper.rb
hirb-0.4.1 test/test_helper.rb
hirb-0.4.0 test/test_helper.rb
hirb-0.3.6 test/test_helper.rb
bbcloud-0.8.1 lib/bbcloud/vendor/hirb-0.3.4/test/test_helper.rb
hirb-0.3.5 test/test_helper.rb
bbcloud-0.6.2 lib/bbcloud/vendor/hirb/test/test_helper.rb
hirb-0.3.4 test/test_helper.rb