Sha256: 667794b0d043083afaf34d9ce87f1df69d70f6539f9d82d20bb1f8f4341620f6

Contents?: true

Size: 520 Bytes

Versions: 13

Compression:

Stored size: 520 Bytes

Contents

# encoding: UTF-8

require 'codeclimate-test-reporter'
require 'stringio'

CodeClimate::TestReporter.start do
  add_filter '/spec/'
end

# include anything that could be tested
require 'commands/base'
require 'commands/workflows'
require 'listener'
require 'runtime'
require 'websocket_manager'

$LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'

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

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
factor-0.6.3 ./spec/spec_helper.rb
factor-0.6.2 ./spec/spec_helper.rb
factor-0.6.1 ./spec/spec_helper.rb
factor-0.6.0 ./spec/spec_helper.rb
factor-0.5.16 ./spec/spec_helper.rb
factor-0.5.15 ./spec/spec_helper.rb
factor-0.5.13 spec/spec_helper.rb
factor-0.5.12 spec/spec_helper.rb
factor-0.5.10 spec/spec_helper.rb
factor-0.5.09 spec/spec_helper.rb
factor-0.5.08 spec/spec_helper.rb
factor-0.5.07 spec/spec_helper.rb
factor-0.5.06 spec/spec_helper.rb