/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
3735.2.1 by Robert Collins
Add the concept of CHK lookups to Repository.
1
# Copyright (C) 2008 Canonical Ltd
2
#
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
7
#
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
3735.36.3 by John Arbash Meinel
Add the new address for FSF to the new files.
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
3735.2.1 by Robert Collins
Add the concept of CHK lookups to Repository.
16
3735.2.7 by Robert Collins
Explanations.
17
"""Tests for repositories that do not support CHK indices.
18
19
CHK support is optional, and when it is not supported the methods and
20
attributes CHK support added should fail in known ways.
21
"""
3735.2.1 by Robert Collins
Add the concept of CHK lookups to Repository.
22
3735.2.4 by Robert Collins
Test RemoteRepository with and with-out chk index backing formats.
23
from bzrlib.tests.per_repository_chk import TestCaseWithRepositoryCHK
24
25
26
class TestNoCHKSupport(TestCaseWithRepositoryCHK):
3735.2.1 by Robert Collins
Add the concept of CHK lookups to Repository.
27
28
    def test_chk_bytes_attribute_is_None(self):
29
        repo = self.make_repository('.')
30
        self.assertEqual(None, repo.chk_bytes)