summaryrefslogtreecommitdiff
path: root/bzrlib/tests/per_workingtree/test_mkdir.py
diff options
context:
space:
mode:
Diffstat (limited to 'bzrlib/tests/per_workingtree/test_mkdir.py')
-rw-r--r--bzrlib/tests/per_workingtree/test_mkdir.py38
1 files changed, 38 insertions, 0 deletions
diff --git a/bzrlib/tests/per_workingtree/test_mkdir.py b/bzrlib/tests/per_workingtree/test_mkdir.py
new file mode 100644
index 0000000..7242c78
--- /dev/null
+++ b/bzrlib/tests/per_workingtree/test_mkdir.py
@@ -0,0 +1,38 @@
+# Copyright (C) 2006 Canonical Ltd
+# Authors: Robert Collins <robert.collins@canonical.com>
+#
+# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+"""Tests for interface conformance of 'workingtree.put_mkdir'"""
+
+from bzrlib.tests.per_workingtree import TestCaseWithWorkingTree
+
+
+class TestMkdir(TestCaseWithWorkingTree):
+
+ def test_mkdir_no_id(self):
+ t = self.make_branch_and_tree('t1')
+ t.lock_write()
+ self.addCleanup(t.unlock)
+ file_id = t.mkdir('path')
+ self.assertEqual('directory', t.kind(file_id))
+
+ def test_mkdir_with_id(self):
+ t = self.make_branch_and_tree('t1')
+ t.lock_write()
+ self.addCleanup(t.unlock)
+ file_id = t.mkdir('path', 'my-id')
+ self.assertEqual('my-id', file_id)
+ self.assertEqual('directory', t.kind(file_id))