compass/test/units/sprites/engine_test.rb

48 lines
1.1 KiB
Ruby
Raw Normal View History

2011-06-12 04:52:05 +00:00
require 'test_helper'
class EngineTest < Test::Unit::TestCase
2011-12-10 17:49:34 +00:00
include SpriteHelper
2011-06-12 04:52:05 +00:00
def setup
2011-12-10 17:49:34 +00:00
create_sprite_temp
2011-06-12 04:52:05 +00:00
sprite_filename = 'squares/ten-by-ten.png'
@images = [
Compass::SassExtensions::Sprites::Image.new(nil, File.join(sprite_filename), {})
]
@engine = Compass::SassExtensions::Sprites::Engine.new(100, 100, @images)
end
2011-12-10 17:49:34 +00:00
def taredown
clean_up_sprites
end
2011-06-12 04:52:05 +00:00
test "should have width of 100" do
assert_equal 100, @engine.width
end
test "should have height of 100" do
assert_equal 100, @engine.height
end
test "should have correct images" do
assert_equal @images, @engine.images
end
test "raises Compass::Error when calling save" do
begin
@engine.save('foo')
assert false, '#save did not raise an exception'
rescue Compass::Error
assert true
end
end
test "raises Compass::Error when calling construct_sprite" do
begin
@engine.construct_sprite
assert false, '#construct_sprite did not raise an exception'
rescue Compass::Error
assert true
end
end
end