rbackup/tests/test_snapshot.py

18 lines
300 B
Python
Raw Normal View History

"""
.. author:: Eric Torres
Unit tests for the Snapshot class.
"""
import doctest
import unittest
from rbackup.struct.snapshot import Snapshot
# ========== Constants ==========
2019-04-10 18:03:58 -07:00
TESTING_PACKAGE = "rbackup.struct"
TESTING_MODULE = f"{TESTING_PACKAGE}.snapshot"
2019-03-29 15:26:35 -07:00
# ========== Unit Tests ==========