diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-11-29 01:36:31 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:46:41 +0100 |
commit | e22c7f1fe35047ba3b0434c683ee8e9d6898b35d (patch) | |
tree | bc4e525e172e33d64ca51827751a697fd324029a /source4/auth/tests | |
parent | 660077476f43bb262b57f538147140e07e65f6df (diff) | |
download | samba-e22c7f1fe35047ba3b0434c683ee8e9d6898b35d.tar.gz samba-e22c7f1fe35047ba3b0434c683ee8e9d6898b35d.tar.bz2 samba-e22c7f1fe35047ba3b0434c683ee8e9d6898b35d.zip |
r26189: Add really trivial testsuite for the auth module.
(This used to be commit f0fcad0a75998bc45e3073927c0021fa67136d22)
Diffstat (limited to 'source4/auth/tests')
-rw-r--r-- | source4/auth/tests/bindings.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/source4/auth/tests/bindings.py b/source4/auth/tests/bindings.py new file mode 100644 index 0000000000..4a4b12bf69 --- /dev/null +++ b/source4/auth/tests/bindings.py @@ -0,0 +1,34 @@ +#!/usr/bin/python + +# Unix SMB/CIFS implementation. +# Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007 +# +# 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 +# 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, see <http://www.gnu.org/licenses/>. +# + +"""Tests for the Auth Python bindings. + +Note that this just tests the bindings work. It does not intend to test +the functionality, that's already done in other tests. +""" + +import unittest +import auth + +class AuthTests(unittest.TestCase): + def test_system_session(self): + auth.system_session() + + def test_system_session_anon(self): + auth.system_session_anon() |