augustl (owner)

Revisions

gist: 73364 Download_button fork
public
Description:
Test helper for testing engines in 2.3.
Public Clone URL: git://gist.github.com/73364.git
Embed All Files: show embed
test_helper.rb #
1
2
3
4
5
6
7
8
dir = File.dirname(__FILE__)
rails_root = File.join(dir, '..', '..', '..', '..')
ENV["RAILS_ENV"] = "test"
ENV["RAILS_ROOT"] = rails_root
 
require File.join(rails_root, 'config', 'environment')
require 'test/unit'
require 'action_view/test_case'