Sha256: df47667dee5c4034b64e125f1301819089d9bcffdcc97abf5ca7922bbb203b67
Contents?: true
Size: 445 Bytes
Versions: 4
Compression:
Stored size: 445 Bytes
Contents
package org.apache.hadoop.ruby; import org.apache.hadoop.conf.Configuration; import org.junit.Test; public class JRubyJobRunnerTest { @Test public void testRun() throws Exception { JRubyJobRunner runner = new JRubyJobRunner(); Configuration conf = new Configuration(); runner.setConf(conf); String[] args = { "--script", "mapred.rb", "inputs", "outputs" }; try { runner.run(args); } catch (Throwable t) { /* ignore */ } } }
Version data entries
4 entries across 4 versions & 1 rubygems