1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
# frozen_string_literal: true
require "spec_helper"
describe Hitimes::Metric do
before(:each) do
@metric = Hitimes::Metric.new("testing")
end
it "has a name" do
_(@metric.name).must_equal "testing"
end
it "has associated data from initialization" do
m = Hitimes::Metric.new("more-data", "foo" => "bar", "this" => "that")
_(m.additional_data["foo"]).must_equal "bar"
_(m.additional_data["this"]).must_equal "that"
m = Hitimes::Metric.new("more-data", { "foo" => "bar", "this" => "that" })
_(m.additional_data["foo"]).must_equal "bar"
_(m.additional_data["this"]).must_equal "that"
end
it "initially has no sampling times" do
_(@metric.sampling_start_time).must_be_nil
_(@metric.sampling_stop_time).must_be_nil
end
end
|