diff options
| author | Jelmer Vernooij <jelmer@samba.org> | 2010-09-22 19:21:58 -0700 |
|---|---|---|
| committer | Jelmer Vernooij <jelmer@samba.org> | 2010-09-22 22:29:09 -0700 |
| commit | 3d0e6db9dc68aace8b2993faa45f48b3f5f4e855 (patch) | |
| tree | 57a4a26df875da5940a8b6e4d6d92843614c8011 /source4/scripting/python/samba/tests/__init__.py | |
| parent | f9ed11c7562d1ff2cf23de0057df6ff80927c9fc (diff) | |
| download | samba-3d0e6db9dc68aace8b2993faa45f48b3f5f4e855.tar.gz samba-3d0e6db9dc68aace8b2993faa45f48b3f5f4e855.tar.bz2 samba-3d0e6db9dc68aace8b2993faa45f48b3f5f4e855.zip | |
selftest: Fix idlist running.
Diffstat (limited to 'source4/scripting/python/samba/tests/__init__.py')
| -rw-r--r-- | source4/scripting/python/samba/tests/__init__.py | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/source4/scripting/python/samba/tests/__init__.py b/source4/scripting/python/samba/tests/__init__.py index 9644bad4cf0..f2c2fbff637 100644 --- a/source4/scripting/python/samba/tests/__init__.py +++ b/source4/scripting/python/samba/tests/__init__.py @@ -59,47 +59,6 @@ class TestCaseInTempDir(TestCase): os.rmdir(self.tempdir) -class SubstituteVarTestCase(TestCase): - - def test_empty(self): - self.assertEquals("", samba.substitute_var("", {})) - - def test_nothing(self): - self.assertEquals("foo bar", - samba.substitute_var("foo bar", {"bar": "bla"})) - - def test_replace(self): - self.assertEquals("foo bla", - samba.substitute_var("foo ${bar}", {"bar": "bla"})) - - def test_broken(self): - self.assertEquals("foo ${bdkjfhsdkfh sdkfh ", - samba.substitute_var("foo ${bdkjfhsdkfh sdkfh ", {"bar": "bla"})) - - def test_unknown_var(self): - self.assertEquals("foo ${bla} gsff", - samba.substitute_var("foo ${bla} gsff", {"bar": "bla"})) - - def test_check_all_substituted(self): - samba.check_all_substituted("nothing to see here") - self.assertRaises(Exception, samba.check_all_substituted, - "Not subsituted: ${FOOBAR}") - - -class LdbExtensionTests(TestCaseInTempDir): - - def test_searchone(self): - path = self.tempdir + "/searchone.ldb" - l = samba.Ldb(path) - try: - l.add({"dn": "foo=dc", "bar": "bla"}) - self.assertEquals("bla", - l.searchone(basedn=ldb.Dn(l, "foo=dc"), attribute="bar")) - finally: - del l - os.unlink(path) - - def env_loadparm(): lp = param.LoadParm() try: |
