Line | |
---|
1 | #! /usr/bin/python
|
---|
2 |
|
---|
3 | # Comfychair test cases for Samba string functions.
|
---|
4 |
|
---|
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.
|
---|
11 | #
|
---|
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.
|
---|
16 | #
|
---|
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/>.
|
---|
19 |
|
---|
20 | """Tests for Samba library functions."""
|
---|
21 |
|
---|
22 | import sys, re, comfychair
|
---|
23 | from unicodenames import *
|
---|
24 |
|
---|
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')
|
---|
29 |
|
---|
30 | # Define the tests exported by this module
|
---|
31 | tests = [snprintf_Test]
|
---|
32 |
|
---|
33 | # Handle execution of this file as a main program
|
---|
34 | if __name__ == '__main__':
|
---|
35 | comfychair.main(tests)
|
---|
36 |
|
---|
37 | # Local variables:
|
---|
38 | # coding: utf-8
|
---|
39 | # End:
|
---|
Note:
See
TracBrowser
for help on using the repository browser.