/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/test_workspace.py

  • Committer: Jelmer Vernooij
  • Date: 2020-08-10 15:00:17 UTC
  • mfrom: (7490.40.99 work)
  • mto: This revision was merged to the branch mainline in revision 7521.
  • Revision ID: jelmer@jelmer.uk-20200810150017-vs7xnrd1vat4iktg
Merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
from . import (
20
20
    TestCaseWithTransport,
21
21
    multiply_scenarios,
 
22
    features,
22
23
    )
23
24
from .scenarios import load_tests_apply_scenarios
24
25
 
117
118
        vary_by_format(),
118
119
    )
119
120
 
 
121
    def setUp(self):
 
122
        super(WorkspaceTests, self).setUp()
 
123
        if self._use_inotify:
 
124
            self.requireFeature(features.pyinotify)
 
125
 
120
126
    def test_root_add(self):
121
127
        tree = self.make_branch_and_tree('.', format=self._format)
122
128
        with Workspace(tree, use_inotify=self._use_inotify) as ws: