mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
13 lines
295 B
Python
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)
|