diff --git a/tests/__init__.py b/tests/__init__.py index 603bae8..00a1145 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,3 +1,15 @@ +# -*- coding: utf-8 -*- +''' + tests + ~~~~~ + + Test suite for vdirsyncer. + + :copyright: (c) 2014 Markus Unterwaditzer + :license: MIT, see LICENSE for more details. +''' +__version__ = '0.1.1' + import vdirsyncer.log vdirsyncer.log.set_level(vdirsyncer.log.logging.DEBUG) diff --git a/tests/conftest.py b/tests/conftest.py index 7dd5d22..7a18037 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,3 +1,12 @@ +# -*- coding: utf-8 -*- +''' + tests.conftest + ~~~~~~~~~~~~~~ + + :copyright: (c) 2014 Markus Unterwaditzer + :license: MIT, see LICENSE for more details. +''' + import pytest @pytest.fixture(autouse=True) diff --git a/tests/storage/__init__.py b/tests/storage/__init__.py index e03713d..77ecc6f 100644 --- a/tests/storage/__init__.py +++ b/tests/storage/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- ''' - vdirsyncer.tests.storage - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + tests.storage + ~~~~~~~~~~~~~ :copyright: (c) 2014 Markus Unterwaditzer :license: MIT, see LICENSE for more details. diff --git a/tests/storage/dav/__init__.py b/tests/storage/dav/__init__.py index 4fdb23f..92cb33f 100644 --- a/tests/storage/dav/__init__.py +++ b/tests/storage/dav/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- ''' - vdirsyncer.tests.storage.dav - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + tests.storage.dav + ~~~~~~~~~~~~~~~~~ :copyright: (c) 2014 Markus Unterwaditzer :license: MIT, see LICENSE for more details. diff --git a/tests/storage/dav/_owncloud.py b/tests/storage/dav/_owncloud.py index 47385df..5fe936a 100644 --- a/tests/storage/dav/_owncloud.py +++ b/tests/storage/dav/_owncloud.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- ''' - vdirsyncer.tests.storage.dav._owncloud - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + tests.storage.dav._owncloud + ~~~~~~~~~~~~~~~~~~~~~~~~~~~ Using utilities from paste to wrap the PHP application into WSGI. diff --git a/tests/storage/dav/_radicale.py b/tests/storage/dav/_radicale.py index f22d7eb..bd4f570 100644 --- a/tests/storage/dav/_radicale.py +++ b/tests/storage/dav/_radicale.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- ''' - vdirsyncer.tests.storage.dav._radicale - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + tests.storage.dav._radicale + ~~~~~~~~~~~~~~~~~~~~~~~~~~~ Using the Radicale CalDAV/CardDAV server to test the CalDAV and CardDAV storages. Done by using Werkzeug's test client for WSGI apps. While this is diff --git a/tests/storage/dav/test_main.py b/tests/storage/dav/test_main.py index 0aa7594..d5a2661 100644 --- a/tests/storage/dav/test_main.py +++ b/tests/storage/dav/test_main.py @@ -1,8 +1,7 @@ - # -*- coding: utf-8 -*- ''' - vdirsyncer.tests.storage.dav.test_main - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + tests.storage.dav.test_main + ~~~~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: (c) 2014 Markus Unterwaditzer :license: MIT, see LICENSE for more details. diff --git a/tests/storage/test_filesystem.py b/tests/storage/test_filesystem.py index d7506bd..2673935 100644 --- a/tests/storage/test_filesystem.py +++ b/tests/storage/test_filesystem.py @@ -1,8 +1,8 @@ # -*- coding: utf-8 -*- ''' - vdirsyncer.tests.storage.filesystem - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + tests.storage.filesystem + ~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: (c) 2014 Markus Unterwaditzer :license: MIT, see LICENSE for more details. diff --git a/tests/storage/test_http.py b/tests/storage/test_http.py index 6fd0fbf..9f72949 100644 --- a/tests/storage/test_http.py +++ b/tests/storage/test_http.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- ''' - vdirsyncer.tests.storage.test_http - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + tests.storage.test_http + ~~~~~~~~~~~~~~~~~~~~~~~ :copyright: (c) 2014 Markus Unterwaditzer :license: MIT, see LICENSE for more details. diff --git a/tests/storage/test_memory.py b/tests/storage/test_memory.py index c0cf572..3180513 100644 --- a/tests/storage/test_memory.py +++ b/tests/storage/test_memory.py @@ -1,8 +1,8 @@ # -*- coding: utf-8 -*- ''' - vdirsyncer.tests.storage.test_memory - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + tests.storage.test_memory + ~~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: (c) 2014 Markus Unterwaditzer :license: MIT, see LICENSE for more details. diff --git a/tests/test_cli.py b/tests/test_cli.py index f120f5b..dfb0816 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- ''' - vdirsyncer.tests.test_cli - ~~~~~~~~~~~~~~~~~~~~~~~~~~ + tests.test_cli + ~~~~~~~~~~~~~~ :copyright: (c) 2014 Markus Unterwaditzer :license: MIT, see LICENSE for more details. diff --git a/tests/test_sync.py b/tests/test_sync.py index 2aca9f1..392ccbc 100644 --- a/tests/test_sync.py +++ b/tests/test_sync.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- ''' - vdirsyncer.tests.test_sync - ~~~~~~~~~~~~~~~~~~~~~~~~~~ + tests.test_sync + ~~~~~~~~~~~~~~~ :copyright: (c) 2014 Markus Unterwaditzer :license: MIT, see LICENSE for more details. diff --git a/tests/test_utils.py b/tests/test_utils.py index 239ca13..9c0b9b9 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- ''' - vdirsyncer.tests.test_utils - ~~~~~~~~~~~~~~~~~~~~~~~~~~~ + tests.test_utils + ~~~~~~~~~~~~~~~~ :copyright: (c) 2014 Markus Unterwaditzer :license: MIT, see LICENSE for more details. diff --git a/vdirsyncer/storage/dav.py b/vdirsyncer/storage/dav.py index f8490a1..5c44a52 100644 --- a/vdirsyncer/storage/dav.py +++ b/vdirsyncer/storage/dav.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- ''' vdirsyncer.storage.dav - ~~~~~~~~~~~~~~~~~~~~~~~~~ + ~~~~~~~~~~~~~~~~~~~~~~ :copyright: (c) 2014 Markus Unterwaditzer, Christian Geier and contributors :license: MIT, see LICENSE for more details.