Sha256: f01218b2fc9565ca64c9b0d90e227ba8f0704c7a4391ae7eeba67e45f38afc17
Contents?: true
Size: 852 Bytes
Versions: 1
Compression:
Stored size: 852 Bytes
Contents
require 'bundler' Bundler.setup # if RUBY_VERSION =~ /^1\.9/ # require 'simplecov' # SimpleCov.start # else # require 'rspec' # require 'rcov' # end # # Add this folder to the load path for "spec_helper" # $:.unshift(File.dirname(__FILE__)) require 'vagrant/test_helpers' require 'melissadata' MelissaData.env = :test # Try to load ruby debug since its useful if it is available. # But not a big deal if its not available (probably on a non-MRI # platform) begin require 'ruby-debug' rescue LoadError end Dir[File.expand_path("helpers/**/*.rb", File.dirname(__FILE__))].each {|f| require f} # Add the I18n locale for tests I18n.load_path << File.expand_path("../locales/en.yml", __FILE__) RSpec.configure do |c| # Some opts are set in Guardfile c.color_enabled = true # include Vagrant::TestHelpers include VagrantHelpers end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
melissadata-0.1.0 | spec/spec_helper.rb |