Sha256: 704145a1fe010e3d91ccf426d1b6b1156393bde8cc1679adbc830d664d94acb4

Contents?: true

Size: 1.73 KB

Versions: 2

Compression:

Stored size: 1.73 KB

Contents

need_gems = false

lib_dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
$:.unshift(lib_dir) unless $:.include?(lib_dir)
test_dir = File.dirname(__FILE__)
$:.unshift(test_dir) unless $:.include?(test_dir)

# allows testing with edge Haml by creating a test/haml symlink
linked_haml = File.dirname(__FILE__) + '/haml'

if File.exists?(linked_haml) && !$:.include?(linked_haml + '/lib')
  puts "[ using linked Haml ]"
  $:.unshift linked_haml + '/lib'
  require 'sass'
else
  need_gems = true
end

require 'rubygems' if need_gems

require 'compass'

require 'test/unit'


%w(command_line diff io rails test_case).each do |helper|
  require "helpers/#{helper}"
end


class Test::Unit::TestCase
  include Compass::Diff
  include Compass::TestCaseHelper
  include Compass::IoHelper
  extend Compass::TestCaseHelper::ClassMethods
  
end 

module SpriteHelper
  URI = "selectors/*.png"
  
  def init_sprite_helper
    @images_src_path = File.join(File.dirname(__FILE__), 'fixtures', 'sprites', 'public', 'images')
    @images_tmp_path = File.join(File.dirname(__FILE__), 'fixtures', 'sprites', 'public', 'images-tmp')
  end
  
  def sprite_map_test(options)
    importer = Compass::SpriteImporter.new
    path, name = Compass::SpriteImporter.path_and_name(URI)
    sprite_names = Compass::SpriteImporter.sprite_names(URI)
    sass_engine = Compass::SpriteImporter.sass_engine(URI, name, importer, options)
    Compass::SassExtensions::Sprites::SpriteMap.new(sprite_names.map{|n| "selectors/#{n}.png"}, path, name, sass_engine, options)
  end
  
  def create_sprite_temp
     init_sprite_helper
    ::FileUtils.cp_r @images_src_path, @images_tmp_path
  end

  def clean_up_sprites
     init_sprite_helper
    ::FileUtils.rm_r @images_tmp_path
  end
  
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
compass-0.12.alpha.0 test/test_helper.rb
compass-rails31-0.12.0.alpha.0.91a748a test/test_helper.rb