Sha256: adaf35627369505fd138af294fe20b4614b8a4ccf5e9ae7fda33a16cb4bbe7f1

Contents?: true

Size: 569 Bytes

Versions: 4

Compression:

Stored size: 569 Bytes

Contents

require 'rubygems'
require 'spec/more'

Bacon.summary_on_exit

# is this already defined??
TESTFILES = File.expand_path(File.dirname(__FILE__)) + "/testfiles"

begin
  require 'ms/testdata'
rescue(LoadError)
  puts %Q{
Tests probably cannot be run because the submodules have
not been initialized. Use these commands and try again:
 
% git submodule init
% git submodule update
 
}
  raise
end

def capture_stderr
  begin
    $stderr = StringIO.new
    yield
    $stderr.rewind && $stderr.read
  ensure
    $stderr = STDERR
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ms-sequest-0.0.17 spec/spec_helper.rb
ms-sequest-0.0.16 spec/spec_helper.rb
ms-sequest-0.0.15 spec/spec_helper.rb
ms-sequest-0.0.14 spec/spec_helper.rb