Rev 2493: Add test for checkout. in file:///v/home/vila/src/experimental/reuse.transports/
Vincent Ladeuil
v.ladeuil+lp at free.fr
Fri May 25 16:18:20 BST 2007
At file:///v/home/vila/src/experimental/reuse.transports/
------------------------------------------------------------
revno: 2493
revision-id: v.ladeuil+lp at free.fr-20070525151818-xpagxvflu5j3yiq6
parent: v.ladeuil+lp at free.fr-20070525151105-iabak02mwjjxrxty
committer: Vincent Ladeuil <v.ladeuil+lp at free.fr>
branch nick: reuse.transports
timestamp: Fri 2007-05-25 17:18:18 +0200
message:
Add test for checkout.
* bzrlib/tests/commands/__init__.py:
(test_suite): Add test_checkout.
* bzrlib/tests/commands/test_checkout.py:
New file.
added:
bzrlib/tests/commands/test_checkout.py test_checkout.py-20070525151718-vm7ligd5px5dtmda-1
modified:
bzrlib/tests/commands/__init__.py __init__.py-20070520095518-ecfl8531fxgjeycj-1
-------------- next part --------------
=== added file 'bzrlib/tests/commands/test_checkout.py'
--- a/bzrlib/tests/commands/test_checkout.py 1970-01-01 00:00:00 +0000
+++ b/bzrlib/tests/commands/test_checkout.py 2007-05-25 15:18:18 +0000
@@ -0,0 +1,30 @@
+# Copyright (C) 2007 Canonical Ltd
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+
+from bzrlib.builtins import cmd_checkout
+from bzrlib.tests import StringIOWrapper
+from bzrlib.tests.TransportUtil import TestCaseWithConnectionHookedTransport
+
+class TestCheckout(TestCaseWithConnectionHookedTransport):
+
+ def test_checkout(self):
+ self.make_branch_and_tree('branch1')
+
+ cmd = cmd_checkout()
+ cmd.run(self.get_url() + '/branch1', 'local')
+ self.assertEquals(1, len(self.connections))
+
=== modified file 'bzrlib/tests/commands/__init__.py'
--- a/bzrlib/tests/commands/__init__.py 2007-05-25 15:11:05 +0000
+++ b/bzrlib/tests/commands/__init__.py 2007-05-25 15:18:18 +0000
@@ -29,6 +29,7 @@
def test_suite():
testmod_names = [
'bzrlib.tests.commands.test_branch',
+ 'bzrlib.tests.commands.test_checkout',
'bzrlib.tests.commands.test_init',
'bzrlib.tests.commands.test_pull',
'bzrlib.tests.commands.test_push',
More information about the bazaar-commits
mailing list