~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to testweave.py

  • Committer: Martin Pool
  • Date: 2005-06-28 07:04:15 UTC
  • mto: This revision was merged to the branch mainline in revision 852.
  • Revision ID: mbp@sourcefrog.net-20050628070415-44d7b6789445731b
More tests for nested insert instructions

Show diffs side-by-side

added added

removed removed

Lines of Context:
174
174
                'foo {',
175
175
                ('{', 1),
176
176
                '  added in version 1',
 
177
                ('{', 2),
 
178
                '  added in v2',
 
179
                ('}', 2),
 
180
                '  also from v1',
177
181
                ('}', 1),
178
182
                '}',
179
183
                ('}', 0)]
185
189
        self.assertEqual(k.get(1),
186
190
                         ['foo {',
187
191
                          '  added in version 1',
 
192
                          '  also from v1',
188
193
                          '}'])
189
194
                       
190
195