[MERGE][BUG #276436] Simple fix to WT.open()
Martin Pool
mbp at canonical.com
Wed Oct 1 09:36:33 BST 2008
On Wed, Oct 1, 2008 at 6:32 AM, John Arbash Meinel
<john at arbash-meinel.com> wrote:
> This is just a simple fix to WT.open() and some associated tests. I
> added them to bzrlib.tests.test_workingtree.TestDefaultFormat, because I
> was surprised that there was no direct tests for the "TestWorkingTree"
> to test the static members.
>
> I had considered deprecating not passing an argument (as obviously it
> isn't being used), but I decided to keep it for now.
Actually I think the existence of these methods is a bit questionable:
they just loop back in to BzrDir which eventually calls back in to
WorkingTree. So they're not adding much value in functionality, and
I think any arguable simplicity in the api is outweighed by the
potential confusion of having too many ways to do the same thing.
Of course that I'm still happy you stopped them failing in this case.
> + def test_open(self):
> + tree = self.make_branch_and_tree('.')
> + open_direct = tree.open('.')
> + self.assertEqual(tree.basedir, open_direct.basedir)
> + open_no_args = tree.open()
> + self.assertEqual(tree.basedir, open_no_args.basedir)
> +
> + def test_open_containing(self):
> + tree = self.make_branch_and_tree('.')
> + open_direct, relpath = tree.open_containing('.')
> + self.assertEqual(tree.basedir, open_direct.basedir)
> + self.assertEqual('', relpath)
> + open_no_args, relpath = tree.open_containing()
> + self.assertEqual(tree.basedir, open_no_args.basedir)
> + self.assertEqual('', relpath)
> + open_subdir, relpath = tree.open_containing('subdir')
> + self.assertEqual(tree.basedir, open_subdir.basedir)
> + self.assertEqual('subdir', relpath)
> +
It seems a bit strange or misleading to call these static methods on
an instance. Are you trying to make sure you get possibly overridden
versions or something? I'd at least hope for a comment...
--
Martin <http://launchpad.net/~mbp/>
More information about the bazaar
mailing list