Sha256: 9c45dae1d89870f9987d4987db57b99ba6d911f08e5e3d45627b82b937c6816f
Contents?: true
Size: 812 Bytes
Versions: 8
Compression:
Stored size: 812 Bytes
Contents
require 'spork' ENV['RAILS_ENV'] ||= 'test' Spork.prefork do # Loading more in this block will cause your tests to run faster. However, # if you change any configuration or code from libraries loaded here, you'll # need to restart spork for it take effect. require 'rspec' require 'fakefs/spec_helpers' require 'awesome_print' require 'bourne' require 'vcr' RSpec.configure do |config| config.filter_run :focus => true config.run_all_when_everything_filtered = true config.treat_symbols_as_metadata_keys_with_true_values = true config.mock_with :mocha end VCR.configure do |c| c.cassette_library_dir = 'spec/fixtures/vcr_cassettes' c.hook_into :webmock end end Spork.each_run do # This code will be run each time you run your specs. require 'frenetic' end
Version data entries
8 entries across 8 versions & 1 rubygems