~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-27 07:24:40 UTC
  • mfrom: (1185.1.41)
  • Revision ID: robertc@robertcollins.net-20050927072440-1bf4d99c3e1db5b3
pair programming worx... merge integration and weave

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"""