Method: IOStub#puts
- Defined in:
- lib/mspec/helpers/io.rb
#puts(*str) ⇒ Object
34 35 36 37 38 39 40 |
# File 'lib/mspec/helpers/io.rb', line 34 def puts(*str) if str.empty? write "\n" else write(str.collect { |s| s.to_s.chomp }.concat([nil]).join("\n")) end end |