diff --git a/tests/test_meta_tax_implication.py b/tests/test_meta_tax_implication.py index c5fd4178d2c86854d8dddcfcb674cefb25781fe1..d62658a9f79ff8bb52c4c1e64b0435dba2fc4099 100644 --- a/tests/test_meta_tax_implication.py +++ b/tests/test_meta_tax_implication.py @@ -109,6 +109,16 @@ def test_non_asset_accounts_skipped(account): assert not errors testutil.check_post_meta(txn, None, meta) +def test_prepaid_expenses_skipped(): + txn = testutil.Transaction(postings=[ + ('Expenses:General', 25), + ('Assets:PrepaidExpenses', -25), + ]) + checker = meta_tax_implication.MetaTaxImplication() + errors = list(checker.run(txn)) + assert not errors + testutil.check_post_meta(txn, None, None) + def test_asset_credits_skipped(): txn = testutil.Transaction(postings=[ ('Income:Donations', -25),