root/galaxy-central/eggs/GeneTrack-2.0.0_beta_1_dev_48da9e998f0caf01c5be731e926f4b0481f658f0-py2.6.egg/tests/hdflib_tests.py @ 3

リビジョン 3, 0.5 KB (コミッタ: kohda, 14 年 前)

Install Unix tools  http://hannonlab.cshl.edu/galaxy_unix_tools/galaxy.html

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