mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-06-26 10:54:28 +02:00
18 lines
373 B
Python
18 lines
373 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import sys
|
|
import unittest
|
|
|
|
|
|
class BaseTestCase(unittest.TestCase):
|
|
def tap(self, out):
|
|
sys.stderr.write("--- tap output start ---\n")
|
|
for line in out.splitlines():
|
|
sys.stderr.write(line + '\n')
|
|
sys.stderr.write("--- tap output end ---\n")
|
|
|
|
|
|
class TestCase(BaseTestCase):
|
|
pass
|
|
|
|
# vim: ai sts=4 et sw=4
|