module FunWith::Testing::VerbosityMethods::InstanceMethods
Public Instance Methods
puts_if_verbose( msg, stream = $stdout )
click to toggle source
# File lib/fun_with/testing/verbosity_methods.rb, line 27 def puts_if_verbose( msg, stream = $stdout ) stream.puts( msg ) if self.verbose? end
verbose?()
click to toggle source
# File lib/fun_with/testing/verbosity_methods.rb, line 23 def verbose? self.class.verbose? end