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