Sha256: 61e9c778b0f320025c426b5591e198435c717bda7316c6e5a3d0abbfb877f35b
Contents?: true
Size: 649 Bytes
Versions: 2
Compression:
Stored size: 649 Bytes
Contents
# fake the rails root RAILS_ROOT = File.dirname(__FILE__) # require support libraries require 'test/unit' require 'rubygems' gem 'rails', '2.3.2' require 'active_support' require 'action_controller' require 'action_controller/test_process' # for the assertions require 'action_view' require 'active_record' require 'logger' require 'mocha' RAILS_DEFAULT_LOGGER = Logger.new(File.dirname(__FILE__) + '/debug.log') %w(../lib app/controllers).each do |load_path| ActiveSupport::Dependencies.load_paths << File.dirname(__FILE__) + "/" + load_path end require File.dirname(__FILE__) + '/../init' ActionController::Base.cache_store = :memory_store
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
langalex-components-0.0.1 | test/test_helper.rb |
langalex-components-0.0.2 | test/test_helper.rb |