/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_views.py

  • Committer: Jelmer Vernooij
  • Date: 2018-02-18 21:42:57 UTC
  • mto: This revision was merged to the branch mainline in revision 6859.
  • Revision ID: jelmer@jelmer.uk-20180218214257-jpevutp1wa30tz3v
Update TODO to reference Breezy, not Bazaar.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
 
17
from __future__ import absolute_import
 
18
 
17
19
from . import TestCase
18
20
 
19
21
from ..views import (
34
36
        err_str = str(err)
35
37
        self.assertStartsWith(err_str, "Views are not supported by ")
36
38
        self.assertEndsWith(err_str, "; use 'brz upgrade' to change your "
37
 
                            "tree to a later format.")
 
39
            "tree to a later format.")
38
40
 
39
41
    def test_file_outside_view(self):
40
42
        err = FileOutsideView('baz', ['foo', 'bar'])