~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_weave.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-03-09 06:39:13 UTC
  • mfrom: (1596.2.6 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060309063913-6d8ce700706d0802
Merge knit performance stage 1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
 
78
78
class StoreText(TestBase):
79
79
    """Store and retrieve a simple text."""
80
 
    def runTest(self):
 
80
 
 
81
    def test_storing_text(self):
81
82
        k = Weave()
82
83
        idx = k.add_lines('text0', [], TEXT_0)
83
84
        self.assertEqual(k.get_lines(idx), TEXT_0)