Sha256: 8416ed4251ef411b1909a29736df23707b568ade1b48f7bdddb287a97a99dae8

Contents?: true

Size: 652 Bytes

Versions: 9

Compression:

Stored size: 652 Bytes

Contents

ENV["RAILS_ENV"] = "test"

require 'pp'
require 'spork'

Spork.prefork do

	require File.expand_path("../../test/dummy/config/environment.rb",  __FILE__)
	require 'rspec/rails'

	ENGINE_RAILS_ROOT=File.join(File.dirname(__FILE__), '../')

	# Requires supporting ruby files with custom matchers and macros, etc,
	# in spec/support/ and its subdirectories.
	Dir[File.join(ENGINE_RAILS_ROOT, "spec/support/**/*.rb")].each {|f| require f }

	RSpec.configure do |config|
	  config.use_transactional_fixtures = true
      config.use_instantiated_fixtures  = false	  
	end

end


Spork.each_run do
  # This code will be run each time you run your specs.

end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
will_filter-5.1.4 spec/spec_helper.rb
will_filter-5.1.3 spec/spec_helper.rb
will_filter-5.1.2 spec/spec_helper.rb
will_filter-5.1.1 spec/spec_helper.rb
will_filter-5.1.0 spec/spec_helper.rb
will_filter-3.1.11 spec/spec_helper.rb
will_filter-3.1.10 spec/spec_helper.rb
will_filter-3.1.9 spec/spec_helper.rb
will_filter-3.1.8 spec/spec_helper.rb