Sha256: 1cbd2fda209aa03c5932a8bb237dcfc83cafd448126efd71a843e24f25770d26
Contents?: true
Size: 921 Bytes
Versions: 2
Compression:
Stored size: 921 Bytes
Contents
ENV["RAILS_ENV"] ||= 'test' require 'rubygems' require 'spork' Spork.prefork do ENV["RAILS_ENV"] ||= 'test' require File.expand_path("../dummy/config/environment.rb", __FILE__) require 'rspec/rails' require 'rspec/autorun' require 'mocha/api' Rails.backtrace_cleaner.remove_silencers! # Load support files Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f } # Configure RSpec --------------------------------------- RSpec.configure do |config| config.mock_with :mocha # config.use_transactional_fixtures = true # config.infer_base_class_for_anonymous_controllers = false # Run specs in random order to surface order dependencies. If you find an # order dependency and want to debug it, you can fix the order by providing # the seed, which is printed after each run. # --seed 1234 config.order = "random" end end Spork.each_run do end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
stair_master-0.0.3 | spec/spec_helper.rb |
stair_master-0.0.2 | spec/spec_helper.rb |