public
Description: A mirror of the mephisto code-base
Homepage: http://mephistoblog.com/
Clone URL: git://github.com/halorgium/mephisto.git
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