File size: 434 Bytes
3315103 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import print_function
from __future__ import unicode_literals
from unittest import TestCase
from hwp5.plat import jython_poifs
from .mixin_olestg import OleStorageTestMixin
class TestOleStorageJythonPoiFS(TestCase, OleStorageTestMixin):
def setUp(self):
if jython_poifs.is_enabled():
self.OleStorage = jython_poifs.OleStorage
|