示例#1
0
 def test_model_multiple_pcollections_partition(self):
     contents = [17, 42, 64, 32, 0, 99, 53, 89]
     result_path = self.create_temp_file()
     snippets.model_multiple_pcollections_partition(contents, result_path)
     self.assertEqual(['0', '17', '32', '42', '53', '64', '89', '99'],
                      self.get_output(result_path))
 def test_model_multiple_pcollections_partition(self):
   contents = [17, 42, 64, 32, 0, 99, 53, 89]
   result_path = self.create_temp_file()
   snippets.model_multiple_pcollections_partition(contents, result_path)
   self.assertEqual(['0', '17', '32', '42', '53', '64', '89', '99'],
                    self.get_output(result_path))