~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/teststore.py

  • Committer: Robert Collins
  • Date: 2005-09-26 08:56:15 UTC
  • mto: (1092.3.4)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: robertc@robertcollins.net-20050926085615-99b8fb35f41b541d
massive patch from Alexander Belchenko - many PEP8 fixes, removes unused function uuid

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Test Store implementation
18
18
"""
 
19
 
 
20
from StringIO import StringIO
 
21
 
19
22
from bzrlib.store import ImmutableStore
20
23
from bzrlib.selftest import TestCaseInTempDir
21
 
from StringIO import StringIO
22
24
from bzrlib.errors import BzrError
23
25
 
 
26
 
24
27
class TestStore(TestCaseInTempDir):
25
28
    def test_multiple_add(self):
26
29
        """Multiple add with same ID should raise a BzrError"""