Do not ship test suite with actual project

This commit is contained in:
Eric Torres
2019-03-31 11:21:00 -07:00
parent 88faa9e953
commit c713cc25d7
6 changed files with 1 additions and 1 deletions

21
tests/test_snapshot.py Normal file
View File

@@ -0,0 +1,21 @@
"""
.. 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
# ========== Unit Tests ==========