summaryrefslogtreecommitdiff
path: root/tests/test_write.py
blob: 3366217e199974433639a85410d3a6bcf555d630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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()