mirror of
https://github.com/jimeh/redistat.git
synced 2026-02-19 05:16:39 +00:00
15 lines
330 B
Ruby
15 lines
330 B
Ruby
require "spec_helper"
|
|
|
|
describe Redistat::Event do
|
|
|
|
before(:each) do
|
|
@scope = "PageViews"
|
|
@label = "/about/us"
|
|
@label_hash = Digest::SHA1.hexdigest(@label)
|
|
@now = Time.now
|
|
@event = Redistat::Event.new(@scope, @label, {:views => 1}, @now, {:depth => :hour})
|
|
end
|
|
|
|
it "should initialize properly"
|
|
|
|
end |