public
Description: Support libraries for writing Hadoop Streaming-compatible map/reduce tasks.
Clone URL: git://github.com/codahale/hadoop-streaming.git
Added Runner class with tests.
codahale (author)
Mon Mar 24 12:13:35 -0700 2008
commit  239e032899dcad7ce3363c9021ec453ec649dbed
tree    f226c12f8ab01419831278b86739a7c211d06a8d
parent  fe666812bbc78ff81c24063b0814aa64eaf31772
...
2
3
4
5
 
6
7
8
9
10
 
 
11
12
13
...
2
3
4
 
5
6
7
8
9
 
10
11
12
13
14
0
@@ -2,12 +2,13 @@
0
 # encoding: utf-8
0
 import unittest
0
 
0
-import test_parsers, test_collectors
0
+import test_collectors, test_parsers, test_runner
0
 
0
 def test_suite():
0
   return unittest.TestSuite((
0
     test_collectors.suite(),
0
- test_parsers.suite()
0
+ test_parsers.suite(),
0
+ test_runner.suite()
0
   ))
0
 
0
 if __name__ == '__main__':

Comments

    No one has commented yet.