Add smbta-util to manage the encryption key.
[Samba/nascimento.git] / source3 / stf / sambalib.py
blob552280ed29253f2985a8165c222778c74d906873
1 #! /usr/bin/python
3 # Comfychair test cases for Samba string functions.
5 # Copyright (C) 2003 by Martin Pool <mbp@samba.org>
6 #
7 # This program is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU General Public License as
9 # published by the Free Software Foundation; either version 3 of the
10 # License, or (at your option) any later version.
12 # This program is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <http://www.gnu.org/licenses/>.
20 """Tests for Samba library functions."""
22 import sys, re, comfychair
23 from unicodenames import *
25 class snprintf_Test(comfychair.TestCase):
26 def runtest(self):
27 # Everything is built in to the test
28 out, err = self.runcmd('t_snprintf')
30 # Define the tests exported by this module
31 tests = [snprintf_Test]
33 # Handle execution of this file as a main program
34 if __name__ == '__main__':
35 comfychair.main(tests)
37 # Local variables:
38 # coding: utf-8
39 # End: