17 lines
261 B
Python
17 lines
261 B
Python
"""
|
|
.. author:: Eric Torres
|
|
|
|
Unit tests for the Snapshot class.
|
|
"""
|
|
import doctest
|
|
import unittest
|
|
|
|
from rbackup.struct.snapshot import Snapshot
|
|
|
|
# ========== Constants ==========
|
|
TESTING_MODULE = "rbackup.struct.snapshot"
|
|
|
|
|
|
|
|
# ========== Unit Tests ==========
|