Imports and docstring cleanups

This commit is contained in:
Eric Torres
2019-04-10 19:23:17 -07:00
parent 0845d6f00d
commit f98e3397ce
3 changed files with 17 additions and 11 deletions

View File

@@ -1,8 +1,16 @@
"""
.. author:: Eric Torres
Tests for the rbackup.struct.repository module.
"""
# TODO test that the snapshot returned is actually in the repository
# TODO test creating snapshots, returned snapshot is an instance of Snapshot, etc.
import unittest
from unittest.mock import MagicMock, PropertyMock, patch
from unittest.mock import PropertyMock, patch
from hypothesis import given
from hypothesis.strategies import builds, characters, lists, text
from hypothesis.strategies import characters, lists, text
from rbackup.struct.repository import Repository
from rbackup.struct.snapshot import Snapshot