Sha256: b620be2e5d7647d46747760c49b6cce77f26dec37ca877ea0e024c757ceaae44

Contents?: true

Size: 1.09 KB

Versions: 5

Compression:

Stored size: 1.09 KB

Contents

require 'rubygems'
require 'ostruct'
require 'bundler/setup'
require 'rspec/mocks'
require 'webmock/rspec'
require 'pry'

require 'socialcast-git-extensions/cli'

ENV['SCGITX_TEST'] = 'true'

RSpec.configure do |config|
  config.mock_with :rspec

  config.before do
    ## Needed because object does not have permalink url until after it has been posted
    allow_any_instance_of(Socialcast::CommandLine::Message).to receive(:permalink_url).and_return('http://demo.socialcast.com/messages/123')
  end

  def capture_with_status(stream)
    exit_status = 0
    begin
      stream = stream.to_s
      eval "$#{stream} = StringIO.new"
      begin
        yield
      rescue SystemExit => system_exit # catch any exit calls
        exit_status = system_exit.status
      end
      result = eval("$#{stream}").string
    ensure
      eval("$#{stream} = #{stream.upcase}")
    end
    return result, exit_status
  end

  def remove_directories(*names)
    project_dir = Pathname.new(Dir.pwd)
    names.each do |name|
      FileUtils.rm_rf(project_dir.join(name)) if FileTest.exists?(project_dir.join(name))
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
socialcast-git-extensions-3.3 spec/spec_helper.rb
socialcast-git-extensions-3.2 spec/spec_helper.rb
socialcast-git-extensions-3.1.33 spec/spec_helper.rb
socialcast-git-extensions-3.1.32 spec/spec_helper.rb
socialcast-git-extensions-3.1.31 spec/spec_helper.rb