Sha256: 26a635111f271e70f8273e62eb65f73e3d77240ec29fa9611eda1c7e6998b116

Contents?: true

Size: 549 Bytes

Versions: 1

Compression:

Stored size: 549 Bytes

Contents

lib_dir = File.dirname(__FILE__) + '/../lib'
# allows testing with edge Rails by creating a test/rails symlink
linked_rails = File.dirname(__FILE__) + '/rails'

if File.exists?(linked_rails) && !$:.include?(linked_rails + '/activesupport/lib')
  puts "[ using linked Rails ]"
  $:.unshift linked_rails + '/activesupport/lib'
  $:.unshift linked_rails + '/actionpack/lib'
else
  require 'rubygems'
end
require 'action_controller'
require 'action_view'

require 'test/unit'
$:.unshift lib_dir unless $:.include?(lib_dir)
require 'haml'
require 'sass'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
haml-2.0.3 test/test_helper.rb