Sha256: 1203489ac6ad07750c8f67632d1ac015c4705f7533f2e841b5e841d10a7fa99f
Contents?: true
Size: 550 Bytes
Versions: 1
Compression:
Stored size: 550 Bytes
Contents
ENV['RAILS_ENV'] ||= 'test' require 'active_support' require 'active_support/core_ext' require 'file_validators' require 'rspec' require 'coveralls' Coveralls.wear! locale_path = Dir.glob(File.dirname(__FILE__) + '/locale/*.yml') I18n.load_path += locale_path unless I18n.load_path.include?(locale_path) I18n.enforce_available_locales = false Dir[File.join(File.dirname(__FILE__), 'support/**/*.rb')].each { |f| require f } RSpec.configure do |config| # Suppress stdout in the console config.before { allow($stdout).to receive(:write) } end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
file_validators-2.1.0 | spec/spec_helper.rb |