Sha256: 73d6eb58fc3f4b078ed7eded2a2fdb215dabb0bb6e503cefb14e3fc20642e350

Contents?: true

Size: 890 Bytes

Versions: 4

Compression:

Stored size: 890 Bytes

Contents

$LOAD_PATH << File.expand_path('../../../rspec-core/lib', __FILE__)
$LOAD_PATH << File.expand_path('../../../rspec-mocks/lib', __FILE__)
$LOAD_PATH.unshift(File.expand_path('../../lib', __FILE__))
require 'rspec/mocks'
require 'rspec/core'
require 'rspec/expectations'

Dir['./spec/support/**/*'].each do |f|
  require f
end

def with_ruby(version)
  yield if RUBY_PLATFORM =~ Regexp.compile("^#{version}")
end

module Rspec
  module Ruby
    class << self
      def version
        RUBY_VERSION
      end
    end
  end
end

module Rspec  
  module Matchers
    def fail
      raise_error(Rspec::Expectations::ExpectationNotMetError)
    end

    def fail_with(message)
      raise_error(Rspec::Expectations::ExpectationNotMetError, message)
    end
  end
end

Rspec::configure do |config|
  config.mock_with(:rspec)
  config.include Rspec::Mocks::Methods
  config.color_enabled = true
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rspec-expectations-2.0.0.a10 spec/spec_helper.rb
rspec-expectations-2.0.0.a9 spec/spec_helper.rb
rspec-expectations-2.0.0.a8 spec/spec_helper.rb
rspec-expectations-2.0.0.a7 spec/spec_helper.rb