Method: MotionSpec::TestUnitOutput#handle_requirement_end

Defined in:
lib/motion-spec/output/test_unit.rb

#handle_requirement_end(error) ⇒ Object



9
10
11
12
13
14
15
# File 'lib/motion-spec/output/test_unit.rb', line 9

def handle_requirement_end(error)
  if error.empty?
    print '.'
  else
    print error[0..0]
  end
end