diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-01-11 04:05:41 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-01-11 04:05:41 +0100 |
commit | 79d466c37397a9d3d236f1c81d7d7fda479bd052 (patch) | |
tree | 81b950ab72ca50df243091bd4b0c8e5842669119 /source4/lib/ldb/tests/python | |
parent | c01396dc2454f978bc4a2d1a81bb357de64732b3 (diff) | |
download | samba-79d466c37397a9d3d236f1c81d7d7fda479bd052.tar.gz samba-79d466c37397a9d3d236f1c81d7d7fda479bd052.tar.bz2 samba-79d466c37397a9d3d236f1c81d7d7fda479bd052.zip |
ldb/python: Support comparing Dn's to strings.
(This used to be commit 355878907970b396e4031426fda260d981c417eb)
Diffstat (limited to 'source4/lib/ldb/tests/python')
-rwxr-xr-x | source4/lib/ldb/tests/python/api.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/lib/ldb/tests/python/api.py b/source4/lib/ldb/tests/python/api.py index b071b84b19..d5346c30b0 100755 --- a/source4/lib/ldb/tests/python/api.py +++ b/source4/lib/ldb/tests/python/api.py @@ -249,6 +249,10 @@ class DnTests(unittest.TestCase): def setUp(self): self.ldb = ldb.Ldb("foo.tdb") + def test_eq_str(self): + x = ldb.Dn(self.ldb, "dc=foo,bar=bloe") + self.assertEquals("dc=foo,bar=bloe", x) + def test_str(self): x = ldb.Dn(self.ldb, "dc=foo,bar=bloe") self.assertEquals(x.__str__(), "dc=foo,bar=bloe") |