Sha256: a73a37ffae37ee21c683f31f7e678ecfe17e4190eb23e6ba34f8332e81dcb67b

Contents?: true

Size: 659 Bytes

Versions: 6

Compression:

Stored size: 659 Bytes

Contents

$:.unshift(File.expand_path('../../lib', __FILE__))

require 'pathname'
require 'logger'

root_path = Pathname(__FILE__).dirname.join('..').expand_path
lib_path  = root_path.join('lib')
log_path  = root_path.join('log')
log_path.mkpath

require 'rubygems'
require 'bundler'

Bundler.require(:default, :test)

require 'flipper-mongo'

Logger.new(log_path.join('test.log'))

require 'support/accessor_helpers'

RSpec.configure do |config|
  config.filter_run :focused => true
  config.alias_example_to :fit, :focused => true
  config.alias_example_to :xit, :pending => true
  config.run_all_when_everything_filtered = true

  config.include AccessorHelpers
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
flipper-mongo-0.3.0 spec/helper.rb
flipper-mongo-0.2.2 spec/helper.rb
flipper-mongo-0.2.1 spec/helper.rb
flipper-mongo-0.2.0 spec/helper.rb
flipper-mongo-0.1.1 spec/helper.rb
flipper-mongo-0.1.0 spec/helper.rb