module TestBench::Controls::Output::NewlineCharacter

Public Class Methods

example() click to toggle source
# File lib/test_bench/controls/output/newline_character.rb, line 5
def self.example
  str = String.new

  string_io = StringIO.new(str)
  string_io.puts('')

  str
end