From c71b802522fd3b980ed1a684882e5444354013d1 Mon Sep 17 00:00:00 2001 From: beucismis Date: Mon, 21 Jun 2021 18:05:18 +0300 Subject: [PATCH] Update test_utils.py --- tests/test_utils.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/test_utils.py b/tests/test_utils.py index 81db814..636ec04 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1,10 +1,15 @@ import os import pytest -from backupill import * +import backupill as bp this_dir, this_filename = os.path.split(__file__) +test_file = os.path.join(this_dir, "secret_key.asc") def test_generate_backup(): - generate_backup(asc_file=os.path.join(this_dir, "test.asc")) + bp.generate_backup(test_file) + + +def test_restore_backup(): + pass