Sha256: aba45c22d4ef098e26ef55f437f547c6e432e9fef7a2791733c9bd115a292d51
Contents?: true
Size: 658 Bytes
Versions: 1
Compression:
Stored size: 658 Bytes
Contents
require 'simplecov' require 'coveralls' if ENV['TRAVIS'] == 'true' SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[ Coveralls::SimpleCov::Formatter, SimpleCov::Formatter::HTMLFormatter ] end SimpleCov.command_name 'RSpec' SimpleCov.start $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) require 'pathname' require 'faker' I18n.enforce_available_locales = true if I18n.respond_to? :enforce_available_locales EXAMPLE_DATA = Pathname.new(__FILE__).dirname + 'data' RSpec.configure do |c| c.run_all_when_everything_filtered = true c.treat_symbols_as_metadata_keys_with_true_values = true c.filter_run focus: true end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
magic_reveal-2.6.1.4 | spec/spec_helper.rb |