Ejemplo n.º 1
0
 def test_model_pipelines(self):
   temp_path = self.create_temp_file('aa bb cc\n bb cc\n cc')
   result_path = temp_path + '.result'
   snippets.model_pipelines(
       ['--input=%s*' % temp_path, '--output=%s' % result_path])
   self.assertEqual(
       self.get_output(result_path),
       [str(s) for s in [(u'aa', 1), (u'bb', 2), (u'cc', 3)]])
Ejemplo n.º 2
0
 def test_model_pipelines(self):
   temp_path = self.create_temp_file('aa bb cc\n bb cc\n cc')
   result_path = temp_path + '.result'
   snippets.model_pipelines([
       '--input=%s*' % temp_path,
       '--output=%s' % result_path])
   self.assertEqual(
       self.get_output(result_path),
       [str(s) for s in [(u'aa', 1), (u'bb', 2), (u'cc', 3)]])