Files
redistat/spec/collection_spec.rb
2010-11-28 11:51:50 +00:00

13 lines
348 B
Ruby

require "spec_helper"
describe Redistat::Collection do
it "should initialize properly" do
options = {:from => "from", :till => "till", :depth => "depth"}
result = Redistat::Collection.new(options)
result.from.should == options[:from]
result.till.should == options[:till]
result.depth.should == options[:depth]
end
end