diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-09-21 22:54:10 -0700 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-09-21 22:54:38 -0700 |
commit | e12e661f35983dfab3e7d869df7770f519b49e48 (patch) | |
tree | 27dfe4857be67dcf127bca691775320cdcb92f9f /source4/scripting/python/samba/tests/dcerpc | |
parent | 118c6548bbc4d1ff889688372190a4503fc2855f (diff) | |
download | samba-e12e661f35983dfab3e7d869df7770f519b49e48.tar.gz samba-e12e661f35983dfab3e7d869df7770f519b49e48.tar.xz samba-e12e661f35983dfab3e7d869df7770f519b49e48.zip |
s4-selftest: Move more tests to scripting/python, simplifies running of tests.
Diffstat (limited to 'source4/scripting/python/samba/tests/dcerpc')
-rw-r--r-- | source4/scripting/python/samba/tests/dcerpc/__init__.py | 4 | ||||
-rw-r--r-- | source4/scripting/python/samba/tests/dcerpc/misc.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source4/scripting/python/samba/tests/dcerpc/__init__.py b/source4/scripting/python/samba/tests/dcerpc/__init__.py index 9e198460a34..b6bf8303044 100644 --- a/source4/scripting/python/samba/tests/dcerpc/__init__.py +++ b/source4/scripting/python/samba/tests/dcerpc/__init__.py @@ -3,12 +3,12 @@ # Unix SMB/CIFS implementation. # Copyright © Jelmer Vernooij <jelmer@samba.org> 2008 -# +# # 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 3 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 diff --git a/source4/scripting/python/samba/tests/dcerpc/misc.py b/source4/scripting/python/samba/tests/dcerpc/misc.py index 3526d74deea..689cea360c7 100644 --- a/source4/scripting/python/samba/tests/dcerpc/misc.py +++ b/source4/scripting/python/samba/tests/dcerpc/misc.py @@ -43,8 +43,8 @@ class GUIDTests(samba.tests.TestCase): guid2 = misc.GUID(text1) self.assertEquals(0, cmp(guid1, guid2)) self.assertEquals(guid1, guid2) - - + + class PolicyHandleTests(samba.tests.TestCase): def test_init(self): |