]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - Crypto/test/template
allmydata.Crypto: fix all internal imports
[tahoe-lafs/tahoe-lafs.git] / Crypto / test / template
1 #
2 # Test script for Crypto.XXX
3 #
4
5 __revision__ = "$Id: template,v 1.1 2002/05/17 13:31:48 akuchling Exp $"
6
7 from sancho.unittest import TestScenario, parse_args, run_scenarios
8
9 tested_modules = [ "Crypto.XXX" ]
10
11 class XXXTest (TestScenario):
12
13     def setup (self):
14         pass
15
16     def shutdown (self):
17         pass
18
19     def check_ (self):
20         ""
21         pass
22
23
24 if __name__ == "__main__":
25     (scenarios, options) = parse_args()
26     run_scenarios(scenarios, options)