spec/progress_spec.rb in woodhouse-0.1.2 vs spec/progress_spec.rb in woodhouse-0.1.5

- old
+ new

@@ -26,12 +26,13 @@ end context "#tick" do it "should send progress updates" do + pending "fix for async" ticker = job.status_ticker("orz") sink.should_receive(:update_job).with(job, { "orz" => { "status" => "funky", "current" => 1 } }) - ticker.tick(:status => "funky").value + ticker.tick(:status => "funky") end end end