Sha256: efaaca0dccfb663302e97cd397930e9a19ebab70991acae079c7f2316522f04a
Contents?: true
Size: 1.01 KB
Versions: 2
Compression:
Stored size: 1.01 KB
Contents
$: << File.join(File.dirname(__FILE__), "/../../lib" ) # Set the default environment to sqlite3's in_memory database ENV['RAILS_ENV'] = 'in_memory' # Load the Rails environment and testing framework require "#{File.dirname(__FILE__)}/../app_root/config/environment" require 'spec/rails' ### Load dependencies #require 'memoizer' #require 'shoulda-matchers' #require 'assignable_values' # ## Load the gem itself #require "#{File.dirname(__FILE__)}/../../lib/consul" require 'rspec_candy/helpers' # Undo changes to RAILS_ENV silence_warnings {RAILS_ENV = ENV['RAILS_ENV']} # Requires supporting files with custom matchers and macros, etc in ./support/ and its subdirectories. Dir[File.expand_path(File.join(File.dirname(__FILE__),'support','**','*.rb'))].each {|f| require f} # Run the migrations print "\033[30m" # dark gray text ActiveRecord::Migrator.migrate("#{Rails.root}/db/migrate") print "\033[0m" Spec::Runner.configure do |config| config.use_transactional_fixtures = true config.use_instantiated_fixtures = false end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
consul-0.4.2 | spec/rails-2.3/spec/spec_helper.rb |
consul-0.4.1 | spec/rails-2.3/spec/spec_helper.rb |