Sha256: e36e7d6cd07563ffae38a46744184e1ec4d05de75613570c27b476aec7a3229d

Contents?: true

Size: 420 Bytes

Versions: 2

Compression:

Stored size: 420 Bytes

Contents

ENV['RUBY_ENV'] ||= 'test'

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

puts RUBY_DESCRIPTION

if ENV['coverage']
  require 'simplecov'

  SimpleCov.start do
    add_filter '/spec/'
  end
end

require 'whipped-cream'

RSpec.configure do |config|
  config.expect_with :rspec do |c|
    c.syntax = :expect
  end

  config.order = :random
  config.treat_symbols_as_metadata_keys_with_true_values = true
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
whipped-cream-0.2.0.beta1 spec/spec_helper.rb
whipped-cream-0.1.1 spec/spec_helper.rb