Sha256: 28cc9d9bb51d53ed89c2635776807273264b41ce09c2cd907ce2fbf6667fcfa1

Contents?: true

Size: 853 Bytes

Versions: 7

Compression:

Stored size: 853 Bytes

Contents

# encoding: utf-8

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

require 'simplecov'
SimpleCov.command_name 'rspec'
SimpleCov.start

# Pull in all of the gems including those in the `test` group
require 'bundler'
Bundler.require

# Loading support files
if RUBY_VERSION < '1.9'
  Dir.glob(::File.expand_path('../support/*.rb', __FILE__)).each { |f| require File.join(File.dirname(f), File.basename(f, '.rb')) }
  Dir.glob(::File.expand_path('../support/**/*.rb', __FILE__)).each { |f| require File.join(File.dirname(f), File.basename(f, '.rb')) }
else
  Dir.glob(::File.expand_path('../support/*.rb', __FILE__)).each { |f| require_relative f }
  Dir.glob(::File.expand_path('../support/**/*.rb', __FILE__)).each { |f| require_relative f }
end

# Avoid writing "describe LocalPac::MyClass do [..]" but "describe MyClass do [..]"
include Aruba

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
aruba-0.14.4 spec/spec_helper.rb
aruba-0.14.3 spec/spec_helper.rb
aruba-win-fix-0.14.2 spec/spec_helper.rb
aruba-0.14.2 spec/spec_helper.rb
aruba-0.14.1 spec/spec_helper.rb
aruba-0.14.0 spec/spec_helper.rb
aruba-0.13.0 spec/spec_helper.rb