Sha256: 9d0031829c67a5a1dce8715642c91e039f081ce30c95827dcf403fed44ce0db3

Contents?: true

Size: 1.72 KB

Versions: 20

Compression:

Stored size: 1.72 KB

Contents

require File.expand_path(File.dirname(__FILE__) + "/../spec_helper")

describe RcovGrapher do
  before :each do
    @rcov_grapher = MetricFu::RcovGrapher.new
    MetricFu.configuration
  end

  it "should respond to rcov_percent and labels" do
    @rcov_grapher.should respond_to(:rcov_percent)
    @rcov_grapher.should respond_to(:labels)
  end

  describe "responding to #initialize" do
    it "should initialise rcov_percent and labels" do
      @rcov_grapher.rcov_percent.should == []
      @rcov_grapher.labels.should == {}
    end
  end

  describe "responding to #get_metrics" do
    context "when metrics were not generated" do
      before(:each) do
        @metrics = YAML::load(File.open(File.join(File.dirname(__FILE__), "..", "resources", "yml", "metric_missing.yml")))
        @date = "1/2"
      end

      it "should not push to rcov_percent" do
        @rcov_grapher.rcov_percent.should_not_receive(:push)
        @rcov_grapher.get_metrics(@metrics, @date)
      end

      it "should not update labels with the date" do
        @rcov_grapher.labels.should_not_receive(:update)
        @rcov_grapher.get_metrics(@metrics, @date)
      end
    end

    context "when metrics have been generated" do
      before(:each) do
        @metrics = YAML::load(File.open(File.join(File.dirname(__FILE__), "..", "resources", "yml", "20090630.yml")))
        @date = "1/2"
      end

      it "should push to rcov_percent" do
        @rcov_grapher.rcov_percent.should_receive(:push).with(49.6)
        @rcov_grapher.get_metrics(@metrics, @date)
      end

      it "should update labels with the date" do
        @rcov_grapher.labels.should_receive(:update).with({ 0 => "1/2" })
        @rcov_grapher.get_metrics(@metrics, @date)
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 5 rubygems

Version Path
metric_fu-2.1.3.7.18.1 spec/graphs/rcov_grapher_spec.rb
metric_fu-2.1.3.7.19 spec/graphs/rcov_grapher_spec.rb
metric_fu-2.1.3.6 spec/graphs/rcov_grapher_spec.rb
metric_fu-2.1.3.5 spec/graphs/rcov_grapher_spec.rb
metric_fu-2.1.3.4 spec/graphs/rcov_grapher_spec.rb
bf4-metric_fu-2.1.3.4 spec/graphs/rcov_grapher_spec.rb
bf4-metric_fu-2.1.3.3 spec/graphs/rcov_grapher_spec.rb
bf4-metric_fu-2.1.3.2 spec/graphs/rcov_grapher_spec.rb
bf4-metric_fu-2.1.3.1 spec/graphs/rcov_grapher_spec.rb
danmayer-metric_fu-2.1.3 spec/graphs/rcov_grapher_spec.rb
danmayer-metric_fu-2.1.2 spec/graphs/rcov_grapher_spec.rb
rferraz-metric_fu-2.1.2 spec/graphs/rcov_grapher_spec.rb
rferraz-metric_fu-2.1.1 spec/graphs/rcov_grapher_spec.rb
metric_fu-2.1.1 spec/graphs/rcov_grapher_spec.rb
metric_fu-2.1.0 spec/graphs/rcov_grapher_spec.rb
goldstar-metric_fu-1.5.1.2 spec/graphs/rcov_grapher_spec.rb
metric_fu-2.0.1 spec/graphs/rcov_grapher_spec.rb
metric_fu-2.0.0 spec/graphs/rcov_grapher_spec.rb
goldstar-metric_fu-1.5.1.1 spec/graphs/rcov_grapher_spec.rb
metric_fu-1.5.1 spec/graphs/rcov_grapher_spec.rb