Sha256: 34d78e9da99098ec52e2c6a13e1c82643ff216cae7b0731574c6f539d61e0fca

Contents?: true

Size: 1.31 KB

Versions: 26

Compression:

Stored size: 1.31 KB

Contents

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

describe FlayGrapher do 
  before :each do
    @flay_grapher = MetricFu::FlayGrapher.new
    MetricFu.configuration
  end
  
  it "should respond to flay_score and labels" do
    @flay_grapher.should respond_to(:flay_score)
    @flay_grapher.should respond_to(:labels)
  end
  
  describe "responding to #initialize" do
    it "should initialise flay_score and labels" do
      @flay_grapher.flay_score.should == []
      @flay_grapher.labels.should == {}
    end
  end
  
  describe "responding to #get_metrics" do
    before(:each) do
      @metrics = YAML::load(File.open(File.join(File.dirname(__FILE__), "..", "resources", "yml", "20090630.yml")))
      @date = "01022003"
    end
    
    it "should push 476 to flay_score" do
      @flay_grapher.flay_score.should_receive(:push).with(476)      
      @flay_grapher.get_metrics(@metrics, @date)
    end
    
    it "should update labels with the date" do
      @flay_grapher.labels.should_receive(:update).with({ 0 => "01022003" })
      @flay_grapher.get_metrics(@metrics, @date)
    end
  end
  
  describe "responding to #graph!" do
    it "should write flay.png" do
      @flay_grapher.graph!
      lambda{ File.open(File.join(MetricFu.output_directory, 'flay.png')) }.should_not raise_error
    end
  end
end

Version data entries

26 entries across 26 versions & 11 rubygems

Version Path
IPGlider-metric_fu-1.1.5.1.1 spec/graphs/flay_grapher_spec.rb
IPGlider-metric_fu-1.1.5.1 spec/graphs/flay_grapher_spec.rb
gforces-metric_fu-1.1.4 spec/graphs/flay_grapher_spec.rb
iain-metric_fu-0.1.0 spec/graphs/flay_grapher_spec.rb
iain-metric_fu-0.1.1 spec/graphs/flay_grapher_spec.rb
iain-metric_fu-0.1.2 spec/graphs/flay_grapher_spec.rb
jscruggs-metric_fu-1.1.2 spec/graphs/flay_grapher_spec.rb
jscruggs-metric_fu-1.1.3 spec/graphs/flay_grapher_spec.rb
jscruggs-metric_fu-1.1.4 spec/graphs/flay_grapher_spec.rb
jscruggs-metric_fu-1.1.5 spec/graphs/flay_grapher_spec.rb
kjeldahl-metric_fu-1.1.5.1 spec/graphs/flay_grapher_spec.rb
kjeldahl-metric_fu-1.1.5.2 spec/graphs/flay_grapher_spec.rb
kjeldahl-metric_fu-1.1.5.3 spec/graphs/flay_grapher_spec.rb
kjeldahl-metric_fu-1.1.5.4 spec/graphs/flay_grapher_spec.rb
kjeldahl-metric_fu-1.1.5 spec/graphs/flay_grapher_spec.rb
mattvanhorn-metric_fu-1.1.5.1 spec/graphs/flay_grapher_spec.rb
mattvanhorn-metric_fu-1.1.5.2 spec/graphs/flay_grapher_spec.rb
mtdewboy-metric_fu-1.1.5.1 spec/graphs/flay_grapher_spec.rb
mwilden-metric_fu-1.1.3 spec/graphs/flay_grapher_spec.rb
mwilden-metric_fu-1.1.5 spec/graphs/flay_grapher_spec.rb