Sha256: 7850eed24bec6cc01454771944f3ad64ed78298e0786a6a052ce6395e5d9f814
Contents?: true
Size: 1.09 KB
Versions: 11
Compression:
Stored size: 1.09 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 = "1/2" 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 => "1/2" }) @flay_grapher.get_metrics(@metrics, @date) end end end
Version data entries
11 entries across 11 versions & 7 rubygems