Sha256: 5b988b37da096370ca437a9ce981b8789c8ad68cdf33ca3fb4a397e2f3418d61
Contents?: true
Size: 908 Bytes
Versions: 6
Compression:
Stored size: 908 Bytes
Contents
require ::File.expand_path('../spec_helper.rb', __FILE__) describe FnordMetric::Worker do before(:each) do @worker = FnordMetric::Worker.new() end it "should generate the correct pubsub-key" do @worker.pubsub_key.should == "fnordmetric-announce" end it "should generate the correct queue-key" do @worker.queue_key.should == "fnordmetric-queue" end it "should generate the correct event-key" do @worker.event_key("myevent").should == "fnordmetric-event-myevent" end it "should generate the correct stats-key" do @worker.stats_key.should == "fnordmetric-stats" end it "should add a namespace" it "should add a namespace and pass options" it "should add a namespace and the key" it "should add a namespace and instance_eval the block" it "should find a namespace by key" it "should find the namespace default namespace without key" end
Version data entries
6 entries across 6 versions & 1 rubygems