~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_repository_vf/test_find_text_key_references.py

  • Committer: Jelmer Vernooij
  • Date: 2011-05-14 21:16:04 UTC
  • mfrom: (5861 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5863.
  • Revision ID: jelmer@samba.org-20110514211604-cxcvynog8js68qlx
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
"""Test the find_text_key_references API."""
19
19
 
20
20
 
21
 
from bzrlib.tests.per_repository import TestCaseWithRepository
 
21
from bzrlib.tests.per_repository_vf import (
 
22
    TestCaseWithRepository,
 
23
    all_repository_vf_format_scenarios,
 
24
    )
 
25
from bzrlib.tests.scenarios import load_tests_apply_scenarios
 
26
 
 
27
load_tests = load_tests_apply_scenarios
22
28
 
23
29
 
24
30
class TestFindTextKeyReferences(TestCaseWithRepository):
25
31
 
 
32
    scenarios = all_repository_vf_format_scenarios()
 
33
 
26
34
    def test_empty(self):
27
35
        repo = self.make_repository('.')
28
36
        repo.lock_read()