Sha256: c088fc40468d0cb9f011eeac7bb9c6ee554a518fdc3a8ca0794c99ed23e47f0e
Contents?: true
Size: 680 Bytes
Versions: 30
Compression:
Stored size: 680 Bytes
Contents
require File.expand_path('../test_helper', __FILE__) module Inquisitio class LoggerTest < Minitest::Test def setup super @logger = Logger.new end def test_debug $stdout.expects(:puts).with("foobar") @logger.debug "foobar" end def test_info $stdout.expects(:puts).with("foobar") @logger.info "foobar" end def test_warn $stdout.expects(:puts).with("foobar") @logger.warn "foobar" end def test_error $stderr.expects(:puts).with("foobar") @logger.error "foobar" end def test_fatal $stderr.expects(:puts).with("foobar") @logger.fatal "foobar" end end end
Version data entries
30 entries across 30 versions & 1 rubygems