Sha256: e23fda80a42d8abfb08762400382f185fbbd7f94fc7ff106ec265538991dbc84

Contents?: true

Size: 615 Bytes

Versions: 4

Compression:

Stored size: 615 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-redis'

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

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.fail_fast = true
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
flipper-redis-0.6.2 spec/helper.rb
flipper-redis-0.6.1 spec/helper.rb
flipper-redis-0.6.0 spec/helper.rb
flipper-redis-0.5.0 spec/helper.rb