1
# Copyright (C) 2004, 2005 by Canonical Ltd
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
from bzrlib.selftest import InTempDir, TestBase
19
from bzrlib.merge3 import Merge3
21
class NoConflicts(TestBase):
22
"""No conflicts because only one side changed"""
24
m3 = Merge3(['aaa', 'bbb'],
25
['aaa', '111', 'bbb'],
28
self.assertEquals(m3.find_unconflicted(),
32
class NoChanges(TestBase):
33
"""No conflicts because nothing changed"""
35
m3 = Merge3(['aaa', 'bbb'],
39
self.assertEquals(m3.find_unconflicted(),
44
class InsertClash(TestBase):
45
"""Both try to insert lines in the same place."""
47
m3 = Merge3(['aaa', 'bbb'],
48
['aaa', '111', 'bbb'],
49
['aaa', '222', 'bbb'])
51
self.assertEquals(m3.find_unconflicted(),
58
class ReplaceClash(TestBase):
59
"""Both try to insert lines in the same place."""
61
m3 = Merge3(['aaa', '000', 'bbb'],
62
['aaa', '111', 'bbb'],
63
['aaa', '222', 'bbb'])
65
self.assertEquals(m3.find_unconflicted(),