commit 9f74e010ed149d7cf8a147f29cd7068e6ced8380 parent ecf43daafc656057cc72f5c0bcd70da3e4f0c060 Author: lash <dev@holbrook.no> Date: Sun, 15 Feb 2026 14:51:27 +0000 Add test stub for import Diffstat:
| M | dummy/tests/store.py | | | 8 | ++++++++ |
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/dummy/tests/store.py b/dummy/tests/store.py @@ -104,5 +104,13 @@ class TestStore(unittest.TestCase): store.load(acl=acl) + def test_store_import(self): + fp = os.path.join(testdir, 'import.xml') + ledger = Ledger.from_file(fp) + store = LedgerStore(self.store, ledger) + store.put_all(store_assets=True) + # TODO: get and asset equal + + if __name__ == '__main__': unittest.main()