mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
27 lines
669 B
Ruby
27 lines
669 B
Ruby
lib_dir = File.dirname(__FILE__) + '/../lib'
|
|
require File.dirname(__FILE__) + '/linked_rails'
|
|
|
|
require 'test/unit'
|
|
require 'fileutils'
|
|
$:.unshift lib_dir unless $:.include?(lib_dir)
|
|
require 'haml'
|
|
require 'sass'
|
|
|
|
# required because of Sass::Plugin
|
|
unless defined? RAILS_ROOT
|
|
RAILS_ROOT = '.'
|
|
MERB_ENV = RAILS_ENV = 'testing'
|
|
end
|
|
|
|
class Test::Unit::TestCase
|
|
def munge_filename(opts)
|
|
return if opts[:filename]
|
|
test_name = caller[1].gsub(/^.*`(?:\w+ )*(\w+)'.*$/, '\1')
|
|
opts[:filename] = "#{test_name}_inline.sass"
|
|
end
|
|
|
|
def clean_up_sassc
|
|
path = File.dirname(__FILE__) + "/../.sass-cache"
|
|
FileUtils.rm_r(path) if File.exist?(path)
|
|
end
|
|
end
|