3 # Comfychair test cases for Samba string functions.
5 # Copyright (C) 2003 by Martin Pool <mbp@samba.org>
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
):
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
)