Files @ 5c80ca07f00c
Branch filter:

Location: Morevna/src/tests/__init__.py

Laman
reformatted whitespace with more respect for PEP-8
import sys


class RedirectedOutput():
	_stdout = None

	@classmethod
	def setUpClass(cls):
		cls._stdout = sys.stdout
		sys.stdout = open("/tmp/morevna-stdout.log", mode="a")

	@classmethod
	def tearDownClass(cls):
		sys.stdout.close()
		sys.stdout = cls._stdout