diff options
author | drebs <drebs@leap.se> | 2013-04-30 15:37:37 -0300 |
---|---|---|
committer | drebs <drebs@leap.se> | 2013-04-30 15:37:37 -0300 |
commit | 1b9009c0b67e6209abbb7047b1edea7961bd3256 (patch) | |
tree | 5059da0cdee2bb5ad7177cdc3b703bfdd02774df /src/leap/soledad/tests/test_couch.py | |
parent | b567343c7b4daa54a05ed31592078fc69966f421 (diff) |
Update tests with monkey patching to always use our SyncTarget.
Diffstat (limited to 'src/leap/soledad/tests/test_couch.py')
-rw-r--r-- | src/leap/soledad/tests/test_couch.py | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/src/leap/soledad/tests/test_couch.py b/src/leap/soledad/tests/test_couch.py index 456bc080..b0352782 100644 --- a/src/leap/soledad/tests/test_couch.py +++ b/src/leap/soledad/tests/test_couch.py @@ -1,7 +1,23 @@ -"""Test ObjectStore backend bits. +# -*- coding: utf-8 -*- +# test_couch.py +# Copyright (C) 2013 LEAP +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. -For these tests to run, a couch server has to be running on (default) port -5984. + +""" +Test ObjectStore and Couch backend bits. """ import re |