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

  • Committer: Martin Pool
  • Date: 2006-06-10 23:16:19 UTC
  • mfrom: (1759 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1761.
  • Revision ID: mbp@sourcefrog.net-20060610231619-05b997deeb005d02
[merge] bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
        self.runbzr("--pants off", retcode=3)
104
104
        self.runbzr("diff --message foo", retcode=3)
105
105
 
106
 
    def test_remove_deleted(self):
107
 
        self.runbzr("init")
108
 
        self.build_tree(['a'])
109
 
        self.runbzr(['add', 'a'])
110
 
        self.runbzr(['commit', '-m', 'added a'])
111
 
        os.unlink('a')
112
 
        self.runbzr(['remove', 'a'])
113
 
 
114
106
    def test_ignore_patterns(self):
115
107
        self.runbzr('init')
116
108
        self.assertEquals(self.capture('unknowns'), '')
831
823
        max_width = terminal_width() - 1
832
824
        for line in log_out.splitlines():
833
825
            self.assert_(len(line) <= max_width, len(line))
834
 
        self.assert_("this is my new commit and" in log_out)
 
826
        self.assert_("this is my new commit and" not in log_out)
 
827
        self.assert_("this is my new commit" in log_out)
835
828
 
836
829
        progress("file with spaces in name")
837
830
        mkdir('sub directory')