mirror of
https://github.com/jimeh/redistat.git
synced 2026-02-19 05:16:39 +00:00
13 lines
355 B
Ruby
13 lines
355 B
Ruby
require "spec_helper"
|
|
|
|
describe Redistat::Collection do
|
|
|
|
it "should 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 |