Sha256: 7029ea53b2449245b8f2dfb93248819e59f60182b9289c49f5362b50af8711cf

Contents?: true

Size: 356 Bytes

Versions: 1

Compression:

Stored size: 356 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
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
whipped-cream-0.1.0 spec/spec_helper.rb