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 !
technoweenie (author)
Thu May 15 17:48:51 -0700 2008
commit  478896185b0feb41ac328742f3527531c35f2cad
tree    4b4360f46dc7d1e5a0409bbb3e2ad8aea7b1ca28
parent  aa50252c19b28969e3bc217e70bed6a2f16d3a78 parent  33a730791242bb12b2bcd8cfab0a59e2b750b725
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