mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
4db87e4972
tried to keep as much logic/data from the original source code
12 lines
162 B
Ruby
12 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
|