/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 bzrlib/tests/blackbox/test_unknowns.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-06-04 05:59:55 UTC
  • mfrom: (5279.1.1 lazy-import-merge)
  • Revision ID: pqm@pqm.ubuntu.com-20100604055955-98pfcy1bn8oz7749
(spiv) Use lazy imports in bzrilb.merge to minimise the startup cost of
 plugins like news_merge. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007 Canonical Ltd
 
1
# Copyright (C) 2007-2010 Canonical Ltd
2
2
# -*- coding: utf-8 -*-
3
3
#
4
4
# This program is free software; you can redistribute it and/or modify
45
45
        # after all added, none shown
46
46
        tree.add(['b', 'c'])
47
47
        self.assertEquals(self.run_bzr('unknowns')[0], '')
 
48
 
 
49
    def test_unknowns_directory(self):
 
50
        """Test --directory option"""
 
51
        tree = self.make_branch_and_tree('a')
 
52
        self.build_tree(['a/README'])
 
53
        out, err = self.run_bzr(['unknowns', '--directory=a'])
 
54
        self.assertEquals('README\n', out)