# File lib/mspec/runner/formatters/yaml.rb, line 5
 5:   def initialize(out=nil)
 6:     @exception = @failure = false
 7:     @exceptions = []
 8:     @count = 0
 9:     @out = $stdout
10: 
11:     if out.nil?
12:       @finish = $stdout
13:     else
14:       @finish = File.open out, "w"
15:     end
16:   end