root/galaxy-central/eggs/GeneTrack-2.0.0_beta_1_dev_48da9e998f0caf01c5be731e926f4b0481f658f0-py2.6.egg/tests/hdflib_tests.py
リビジョン 3, 0.5 KB (コミッタ: kohda, 14 年 前) |
---|
行番号 | |
---|---|
1 | import os, unittest, random |
2 | |
3 | import testlib |
4 | from genetrack import conf, util, logger |
5 | |
6 | class Hdflib( unittest.TestCase ): |
7 | 'basic sequence class tests' |
8 | |
9 | def test_all(self): |
10 | "Testing sequence operations" |
11 | #self.assertEqual(1, 0) |
12 | |
13 | def get_suite(): |
14 | "Returns the testsuite" |
15 | tests = [ |
16 | Hdflib, |
17 | ] |
18 | |
19 | return testlib.make_suite( tests ) |
20 | |
21 | if __name__ == '__main__': |
22 | suite = get_suite() |
23 | logger.disable(None) |
24 | unittest.TextTestRunner(verbosity=2).run( suite ) |
25 | |
26 |
Note: リポジトリブラウザについてのヘルプは TracBrowser
を参照してください。