summaryrefslogtreecommitdiff
path: root/rdiff-backup
diff options
context:
space:
mode:
Diffstat (limited to 'rdiff-backup')
-rw-r--r--rdiff-backup/testing/ctest.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/rdiff-backup/testing/ctest.py b/rdiff-backup/testing/ctest.py
index 9b591fe..16a7882 100644
--- a/rdiff-backup/testing/ctest.py
+++ b/rdiff-backup/testing/ctest.py
@@ -37,5 +37,9 @@ class CTest(unittest.TestCase):
for l in 0L, 1L, 4000000000L, 34234L, 234234234L:
assert C.str2long(C.long2str(l)) == l
+ def test_sync(self):
+ """Test running C.sync"""
+ C.sync()
+
if __name__ == "__main__": unittest.main()