summaryrefslogtreecommitdiff
path: root/tests/test_write.py
blob: 28361b0a57532528da29bf29e9253f030afbb22b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from __future__ import absolute_import

from ofxparse import OfxParser as op
from unittest import TestCase
import sys
sys.path.append('..')
from .support import open_file


class TestOfxWrite(TestCase):
    def test_write(self):
        test_file = open_file('fidelity.ofx')
        ofx_doc = op.parse(test_file)
        self.assertEqual(str(ofx_doc), "")

if __name__ == "__main__":
    import unittest
    unittest.main()