public
Fork of halorgium/mephisto
Description: A mirror of the mephisto code-base
Homepage: http://mephistoblog.com/
Clone URL: git://github.com/technoweenie/mephisto.git
Click here to lend your support to: mephisto and make a donation at www.pledgie.com !
Bertg (author)
Thu May 01 14:19:41 -0700 2008
commit  42a9c9a97ac3a61a5d031a11bab598c3585969b5
tree    facb7741dc642ae1d4d07a3316dc575a33cdb6ab
parent  9072b487bf45c5e41e33c66b32d94aea84732d1b
mephisto / spec / spec_helper.rb
100644 15 lines (12 sloc) 0.389 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
ENV["RAILS_ENV"] = "test"
 
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
require 'spec'
require 'spec/rails'
require 'ruby-debug'
require 'model_stubbing/spec'
require File.join(File.dirname(__FILE__), 'model_stubs')
 
Spec::Runner.configure do |config|
  config.use_transactional_fixtures = true
  config.use_instantiated_fixtures = false
end
 
Debugger.start