Changeset - 163ecbc7d3d2
[Not reviewed]
0 2 0
Brett Smith - 4 years ago 2020-03-17 22:06:43
brettcsmith@brettcsmith.org
data: iter_postings uses Account.
2 files changed with 2 insertions and 0 deletions:
0 comments (0 inline, 0 general)
conservancy_beancount/data.py
Show inline comments
...
 
@@ -88,2 +88,3 @@ def iter_postings(txn: Transaction) -> Iterator[Posting]:
 
        yield source._replace(
 
            account=Account(source.account),
 
            meta=PostingMeta(txn, index, source),
tests/test_data_iter_postings.py
Show inline comments
...
 
@@ -32,2 +32,3 @@ def test_iter_postings(simple_txn):
 
        assert all(source[x] == post[x] for x in range(len(source) - 1))
 
        assert isinstance(post.account, data.Account)
 
        assert post.meta['note']  # Only works with PostingMeta
0 comments (0 inline, 0 general)