2008-11-21 05:56:39 +00:00
|
|
|
require File.dirname(__FILE__) + '/spec_helper'
|
|
|
|
require 'zoomifier'
|
|
|
|
|
|
|
|
describe Zoomifier do
|
|
|
|
it "should respond to its main method" do
|
|
|
|
Zoomifier.should respond_to(:zoomify)
|
|
|
|
end
|
2008-11-21 06:32:01 +00:00
|
|
|
|
|
|
|
describe "1024x768.jpg" do
|
|
|
|
it "should zoomify" do
|
|
|
|
output = File.dirname(__FILE__) + '/data/1024x768/'
|
|
|
|
FileUtils.rm_rf(output)
|
|
|
|
input = File.dirname(__FILE__) + '/data/1024x768.jpg'
|
|
|
|
Zoomifier::zoomify(input)
|
|
|
|
File.directory?(output).should be_true
|
|
|
|
FileUtils.rm_rf(output)
|
|
|
|
end
|
|
|
|
end
|
2008-11-21 05:56:39 +00:00
|
|
|
end
|