[mirror] Generates barcoded PDF to backup text files on paper
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
backupill/tests/test_utils.py

15 lines
254 B

import os
import pytest
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():
bp.generate_backup(test_file)
def test_restore_backup():
pass