adding first minimal spec

This commit is contained in:
Donald Ball 2008-11-20 23:56:39 -06:00
parent 2908d96f8a
commit 24baa4a5b5
2 changed files with 9 additions and 0 deletions

1
spec/spec_helper.rb Normal file
View File

@ -0,0 +1 @@
$:.unshift(File.dirname(__FILE__) + '/../lib/')

8
spec/zoomifier_spec.rb Normal file
View File

@ -0,0 +1,8 @@
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
end