Sha256: 416c0dd26b7f91a812d2f0b489a89f04b06ea6726b3ee716ca6a0f0a12bdac26
Contents?: true
Size: 583 Bytes
Versions: 6
Compression:
Stored size: 583 Bytes
Contents
# encoding: utf-8 $LOAD_PATH << ::File.expand_path('../../lib', __FILE__) # Set the rack environment to `test` ENV["RACK_ENV"] = "test" require 'simplecov' SimpleCov.command_name 'rspec' SimpleCov.start # Pull in all of the gems including those in the `test` group require 'bundler' Bundler.require :default, :test, :development require 'local_pac/spec_helper' # Loading support files Dir.glob(::File.expand_path('../support/*.rb', __FILE__)).each { |f| require_relative f } # Avoid writing "describe LocalPac::MyClass do [..]" but "describe MyClass do [..]" include LocalPac
Version data entries
6 entries across 6 versions & 1 rubygems