Remove redundant unit tests already covered in doctests
This commit is contained in:
parent
66ce230f40
commit
a2f8646787
@ -17,42 +17,3 @@ TESTING_MODULE = "rbackup.hierarchy.snapshot"
|
|||||||
def load_tests(loader, tests, ignore):
|
def load_tests(loader, tests, ignore):
|
||||||
tests.addTests(doctest.DocTestSuite(TESTING_MODULE))
|
tests.addTests(doctest.DocTestSuite(TESTING_MODULE))
|
||||||
return tests
|
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"
|
|
||||||
)
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user