rbackup/tests/test_snapshot.py

22 lines
415 B
Python
Raw Normal View History

"""
.. author:: Eric Torres
Unit tests for the Snapshot class.
"""
import doctest
import unittest
from rbackup.hierarchy.snapshot import Snapshot
# ========== Constants ==========
TESTING_MODULE = "rbackup.hierarchy.snapshot"
# ========== Functions ==========
def load_tests(loader, tests, ignore):
tests.addTests(doctest.DocTestSuite(TESTING_MODULE))
return tests
2019-03-29 15:26:35 -07:00
# ========== Unit Tests ==========