Remove redundant unit tests already covered in doctests

This commit is contained in:
Eric Torres 2019-03-18 06:31:52 -07:00
parent 66ce230f40
commit a2f8646787

View File

@ -17,42 +17,3 @@ TESTING_MODULE = "rbackup.hierarchy.snapshot"
def load_tests(loader, tests, ignore):
tests.addTests(doctest.DocTestSuite(TESTING_MODULE))
return tests
# ========== Test Cases ==========
class TestSnapshot(unittest.TestCase):
def setUp(self):
self.snapshot_fullpath = Path("backup/data/snapshot-new")
self.test_snapshot = Snapshot(self.snapshot_fullpath)
def test_fullpath(self):
self.assertEqual(self.test_snapshot.path, self.snapshot_fullpath)
def test_name(self):
self.assertEqual(self.test_snapshot.name, "snapshot-new")
def test_boot_dir(self):
self.assertEqual(
self.test_snapshot.boot_dir,
self.snapshot_fullpath / "boot" / "loader",
)
def test_etc_dir(self):
self.assertEqual(
self.test_snapshot.etc_dir, self.snapshot_fullpath / "etc"
)
def test_home_dir(self):
self.assertEqual(
self.test_snapshot.home_dir, self.snapshot_fullpath / "home"
)
def test_pkg_dir(self):
self.assertEqual(
self.test_snapshot.pkg_dir, self.snapshot_fullpath / "pkg"
)
def test_root_home_dir(self):
self.assertEqual(
self.test_snapshot.root_home_dir, self.snapshot_fullpath / "root"
)