Sha256: 914c849b68c55625f3846e2d63919d064214efa922d1c520c3fd8ba13a7c9c64
Contents?: true
Size: 1.5 KB
Versions: 4
Compression:
Stored size: 1.5 KB
Contents
ENV["environment"] ||= 'test' require "bundler/setup" if ENV["COVERAGE"] require 'simplecov' require 'coveralls' SimpleCov.formatter = Coveralls::SimpleCov::Formatter SimpleCov.start do add_filter "/spec/" add_filter "/gemfiles/" end end require 'active-fedora' require 'rspec' require 'equivalent-xml/rspec_matchers' require 'logger' require 'byebug' unless ENV['TRAVIS'] ActiveFedora::Base.logger = Logger.new(STDERR) ActiveFedora::Base.logger.level = Logger::WARN # HttpLogger.logger = Logger.new(STDOUT) # HttpLogger.ignore = [/localhost:8983\/solr/] # HttpLogger.colorize = false # HttpLogger.log_headers = true Dir[File.expand_path("../support/**/*.rb", __FILE__)].each {|f| require f } require 'samples/samples' $VERBOSE=nil # This loads the Fedora and Solr config info from /config/fedora.yml # You can load it from a different location by passing a file path as an argument. def restore_spec_configuration ActiveFedora.init(:fedora_config_path=>File.join(File.dirname(__FILE__), "..", "config", "fedora.yml")) end restore_spec_configuration # Shut those Rails deprecation warnings up ActiveSupport::Deprecation.behavior= Proc.new { |message, callstack| } require 'active_fedora/cleaner' RSpec.configure do |config| # Stub out test stuff. config.before(:each) do ActiveFedora::Cleaner.clean! end config.after(:each) do # cleanout_fedora end config.order = :random if ENV['CI'] end def fixture(file) File.open(File.join(File.dirname(__FILE__), 'fixtures', file), 'rb') end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
active-fedora-9.0.0.rc3 | spec/spec_helper.rb |
active-fedora-9.0.0.rc2 | spec/spec_helper.rb |
active-fedora-9.0.0.rc1 | spec/spec_helper.rb |
active-fedora-9.0.0.beta8 | spec/spec_helper.rb |