mirror of
https://github.com/jimeh/redistat.git
synced 2026-02-19 13:26:39 +00:00
27 lines
508 B
Ruby
27 lines
508 B
Ruby
require "spec_helper"
|
|
|
|
describe Redistat::Scope do
|
|
include Redistat::Database
|
|
|
|
before(:all) do
|
|
db.flushdb
|
|
end
|
|
|
|
before(:each) do
|
|
@name = "PageViews"
|
|
@scope = Redistat::Scope.new(@name)
|
|
end
|
|
|
|
it "should initialize properly" do
|
|
@scope.to_s.should == @name
|
|
end
|
|
|
|
it "should increment next_id" do
|
|
scope = Redistat::Scope.new("Visitors")
|
|
@scope.next_id.should == 1
|
|
scope.next_id.should == 1
|
|
@scope.next_id.should == 2
|
|
scope.next_id.should == 2
|
|
end
|
|
|
|
end |