Sha256: 1aa08f1479feee43092596cbf8ac68caecedc2e9e0afd3565c451bcd846b0b86

Contents?: true

Size: 1.63 KB

Versions: 9

Compression:

Stored size: 1.63 KB

Contents

require "spec_helper"
MetricFu.metrics_require { "roodi/grapher" }

describe RoodiGrapher do
  before :each do
    @roodi_grapher = MetricFu::RoodiGrapher.new
    MetricFu.configuration
  end

  it "should respond to roodi_count and labels" do
    expect(@roodi_grapher).to respond_to(:roodi_count)
    expect(@roodi_grapher).to respond_to(:labels)
  end

  describe "responding to #initialize" do
    it "should initialise roodi_count and labels" do
      expect(@roodi_grapher.roodi_count).to eq([])
      expect(@roodi_grapher.labels).to eq({})
    end
  end

  describe "responding to #get_metrics" do
    context "when metrics were not generated" do
      before(:each) do
        @metrics = FIXTURE.load_metric("metric_missing.yml")
        @date = "1/2"
      end

      it "should not push to roodi_count" do
        expect(@roodi_grapher.roodi_count).not_to receive(:push)
        @roodi_grapher.get_metrics(@metrics, @date)
      end

      it "should not update labels with the date" do
        expect(@roodi_grapher.labels).not_to receive(:update)
        @roodi_grapher.get_metrics(@metrics, @date)
      end
    end

    context "when metrics have been generated" do
      before(:each) do
        @metrics = FIXTURE.load_metric("20090630.yml")
        @date = "1/2"
      end

      it "should push to roodi_count" do
        expect(@roodi_grapher.roodi_count).to receive(:push).with(13)
        @roodi_grapher.get_metrics(@metrics, @date)
      end

      it "should update labels with the date" do
        expect(@roodi_grapher.labels).to receive(:update).with(0 => "1/2")
        @roodi_grapher.get_metrics(@metrics, @date)
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 3 rubygems

Version Path
metric_fu-4.13.0 spec/metric_fu/metrics/roodi/grapher_spec.rb
fastruby-metric_fu-5.0.0 spec/metric_fu/metrics/roodi/grapher_spec.rb
code_metric_fu-4.14.4 spec/metric_fu/metrics/roodi/grapher_spec.rb
code_metric_fu-4.14.3 spec/metric_fu/metrics/roodi/grapher_spec.rb
code_metric_fu-4.14.2 spec/metric_fu/metrics/roodi/grapher_spec.rb
code_metric_fu-4.14.1 spec/metric_fu/metrics/roodi/grapher_spec.rb
code_metric_fu-4.14.0 spec/metric_fu/metrics/roodi/grapher_spec.rb
metric_fu-4.12.0 spec/metric_fu/metrics/roodi/grapher_spec.rb
metric_fu-4.11.4 spec/metric_fu/metrics/roodi/grapher_spec.rb