Ejemplo n.º 1
0
 def test_construct_pipeline(self):
   temp_path = self.create_temp_file('abc def ghi\n jkl mno pqr\n stu vwx yz')
   result_path = self.create_temp_file()
   snippets.construct_pipeline({'read': temp_path, 'write': result_path})
   self.assertEqual(
       self.get_output(result_path),
       ['cba', 'fed', 'ihg', 'lkj', 'onm', 'rqp', 'uts', 'xwv', 'zy'])
Ejemplo n.º 2
0
 def test_construct_pipeline(self):
   temp_path = self.create_temp_file(
       'abc def ghi\n jkl mno pqr\n stu vwx yz')
   result_path = self.create_temp_file()
   snippets.construct_pipeline({'read': temp_path, 'write': result_path})
   self.assertEqual(
       self.get_output(result_path),
       ['cba', 'fed', 'ihg', 'lkj', 'onm', 'rqp', 'uts', 'xwv', 'zy'])