public
Description: A mirror of the mephisto code-base
Homepage: http://mephistoblog.com/
Clone URL: git://github.com/halorgium/mephisto.git
francois (author)
Mon Mar 10 20:36:57 -0700 2008
commit  a1407eb22655e040d394c2b34b203d190891eda7
tree    2e680301c13e14008146bd016dbc268622e68d7e
parent  3bbe3ca69a5aa2e4346e62a988edab0b3d9451b8
mephisto / spec / spec_helper.rb
100644 14 lines (12 sloc) 0.388 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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