From 19f5d50e616ce6bebf90f49821f7beb2d3e87908 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Thu, 6 Aug 2009 21:41:19 +0000 Subject: [PATCH] Monotone-Parent: 2ce99ebf3ed3c4ae56f0d8eab897684b58f759de Monotone-Revision: 65d93d27a238a5e86f0c7bc9fd3cbc658d5ee681 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2009-08-06T21:41:19 Monotone-Branch: ca.inverse.sogo --- Tests/README | 4 +++- Tests/all.py | 9 +++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100755 Tests/all.py diff --git a/Tests/README b/Tests/README index 9efff9a66..52027727f 100644 --- a/Tests/README +++ b/Tests/README @@ -10,7 +10,9 @@ setup runnable scripts ---------------- -webdav-sync.py +all.py - run all scripts below at once +webdavsync.py +davacl.py other scripts ------------- diff --git a/Tests/all.py b/Tests/all.py new file mode 100755 index 000000000..853f43476 --- /dev/null +++ b/Tests/all.py @@ -0,0 +1,9 @@ +#!/usr/bin/python + +import unittest + +from davacl import * +from webdavsync import * + +if __name__ == "__main__": + unittest.main()