From e68d3fd6a3d898c9738344f4c1054b438a85aa67 Mon Sep 17 00:00:00 2001 From: Thibault Jouan Date: Fri, 24 Apr 2015 19:47:45 +0000 Subject: [PATCH] Fix coding standards (runner spec descriptions) --- spec/uh/wm/runner_spec.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/uh/wm/runner_spec.rb b/spec/uh/wm/runner_spec.rb index 3c974c0..0e665cd 100644 --- a/spec/uh/wm/runner_spec.rb +++ b/spec/uh/wm/runner_spec.rb @@ -150,17 +150,17 @@ module Uh expect(runner.worker).to respond_to :work_events end - it 'setups the read callback to tell manager to handle pending events' do + it 'setups the read callback' do expect(runner.manager).to receive :handle_pending_events runner.worker.on_read.call end - it 'setups the read_next callback to tell manager to handle next event' do + it 'setups the read_next callback' do expect(runner.manager).to receive :handle_next_event runner.worker.on_read_next.call end - it 'setups the timeout callback to tell manager to flush the output' do + it 'setups the timeout callback' do expect(runner.manager).to receive :flush runner.worker.on_timeout.call end