私は単体テストについて勉強しています。私はPythonを使ってそれについて質問しましたが、言語はよくわかりません。どのように私はこの機能の単体テストを行うことができますか? :ユニットテストの呪文
#following from Python cookbook, #475186
def has_colours(stream):
if not hasattr(stream, "isatty"):
return False
if not stream.isatty():
return False # auto color only on TTYs
try:
import curses
curses.setupterm()
return curses.tigetnum("colors") > 2
except:
# guess false in case of error
return False