Sha256: 0fc3760ef8efee32dab1079d523d69d924f2c34fc63f6f7471ccdefd14adcb7c

Contents?: true

Size: 998 Bytes

Versions: 3

Compression:

Stored size: 998 Bytes

Contents

require "saber"
require "logger"

$spec_dir = File.expand_path("..", __FILE__)
$spec_data = File.expand_path("../data", __FILE__)

Saber::Rc._merge! Optimism <<EOF
p:
  download = Pa("#{$spec_data}/download")

server:
  download = Pa("#{$spec_data}/bt")
  ftp = "ftp://seedbox/bt"
  host = "localhost"
  user = "foo"

port = 8914
token = "token"
drb_uri = "druby://localhost:8915"
EOF
$log = Logger.new(StringIO.new)

RSpec.configure do |config|
  def capture(stream)
    begin
      stream = stream.to_s
      eval "$#{stream} = StringIO.new"
      yield
      result = eval("$#{stream}").string
    ensure
      eval("$#{stream} = #{stream.upcase}")
    end

    result
  end

  alias :silence :capture
end

module Kernel 
private

  def xdescribe(*args, &blk)
    describe *args do
      pending "xxxxxxxxx"
    end
  end

  def xcontext(*args, &blk)
    context *args do
      pending "xxxxxxxxx"
    end
  end

  def xit(*args, &blk)
    it *args do
      pending "xxxxxxxx"
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
saber-0.0.7 spec/spec_helper.rb
saber-0.0.6 spec/spec_helper.rb
saber-0.0.4 spec/spec_helper.rb