Sha256: 16c6ab57669a593bf780293468284a7c541a8f63590b2584d2cd632781ee352b

Contents?: true

Size: 800 Bytes

Versions: 27

Compression:

Stored size: 800 Bytes

Contents

module RSpecHelpers
  def relative_path(path)
    RSpec::Core::Metadata.relative_path(path)
  end

  def ignoring_warnings
    original = $VERBOSE
    $VERBOSE = nil
    result = yield
    $VERBOSE = original
    result
  end

  def safely
    Thread.new do
      ignoring_warnings { $SAFE = 3 }
      yield
    end.join

    # $SAFE is not supported on Rubinius
    unless defined?(Rubinius)
      expect($SAFE).to eql 0 # $SAFE should not have changed in this thread.
    end
  end

  def expect_deprecation_with_call_site(file, line)
    expect(RSpec.configuration.reporter).to receive(:deprecation) do |options|
      expect(options[:call_site]).to include([file, line].join(':'))
    end
  end

  def allow_deprecation
    allow(RSpec.configuration.reporter).to receive(:deprecation)
  end

end

Version data entries

27 entries across 27 versions & 8 rubygems

Version Path
mango-0.7.0 vendor/bundler/ruby/2.0.0/gems/rspec-core-2.14.7/spec/support/helper_methods.rb
rspec-core-2.14.7 spec/support/helper_methods.rb
rspec-core-2.14.6 spec/support/helper_methods.rb
clickable_link-0.0.2 vendor/bundle/ruby/1.9.1/gems/rspec-core-2.14.5/spec/support/helper_methods.rb
syllable_counter-1.0.0 vendor/bundle/gems/rspec-core-2.14.5/spec/support/helper_methods.rb
rspec-core-2.14.5 spec/support/helper_methods.rb
rspec-core-2.14.4 spec/support/helper_methods.rb