1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00
PySolFC/tests/lib/pysol_tests/kpat_load_save.py
2019-05-31 19:33:02 +03:00

13 lines
295 B
Python

# Written by Shlomi Fish, under the MIT Expat License.
import unittest
from pysollib.kpat_load_save import KpatEmitter
from six.moves import cStringIO
class MyTests(unittest.TestCase):
def test_emitter(self):
f = cStringIO()
e = KpatEmitter(f)
self.assertTrue(e)