Skip to content

Commit

Permalink
refactor: rename genericpdf to genericpdfpaycheck #109
Browse files Browse the repository at this point in the history
  • Loading branch information
redstreet committed Nov 17, 2024
1 parent 9daa22b commit 738b0ea
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Generic pdf paystub importer. Use this to build your own pdf paystub importer.
# Call this importer with a config that looks like:
#
# genericpdf.Importer({"desc":"Paycheck (My Company)",
# genericpdfpaycheck.Importer({"desc":"Paycheck (My Company)",
# "main_account":"Income:Employment",
# "paycheck_template": {}, # See beancount_reds_importers/libtransactionbuilder/paycheck.py for sample template
# "currency": "PENNIES",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

from beancount.ingest import regression_pytest as regtest

from beancount_reds_importers.importers import genericpdf
from beancount_reds_importers.importers import genericpdfpaycheck


@regtest.with_importer(
genericpdf.Importer(
genericpdfpaycheck.Importer(
{
"desc": "Paycheck",
"main_account": "Income:Salary:FakeCompany",
Expand All @@ -29,5 +29,5 @@
)
)
@regtest.with_testdir(path.dirname(__file__))
class TestGenericPDF(regtest.ImporterTestBase):
class TestGenericPDFPaycheck(regtest.ImporterTestBase):
pass

0 comments on commit 738b0ea

Please sign in to comment.