mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
4db87e4972
tried to keep as much logic/data from the original source code
11 lines
162 B
Ruby
11 lines
162 B
Ruby
require 'rubygems'
|
|
require 'rails'
|
|
|
|
ENV["RAILS_ENV"] ||= 'test'
|
|
|
|
RSpec.configure do |config|
|
|
|
|
config.mock_framework = :mocha
|
|
config.color_enabled = true
|
|
|
|
end
|