Example #1
0
 def test_to_file_with_dir_path(self):
     chromat_dir = "/tmp"
     for tracefile in self.tracefile_list:
         tracefile_path = tracefile.to_file('/tmp')
         self.assertTrue(os.path.exists(tracefile_path), "Attempted to write %s, but it does not exist.".format(tracefile_path))
         self.assertEqual(os.path.basename(tracefile_path), tracefile.filename, "The tracefile was written to disk with an unexpected file name.")
         self.assertEqual(os.path.dirname(tracefile_path), chromat_dir, "The tracefile was written to disk to an unexpected path.")
Example #2
0
 def test_to_file(self):
     for tracefile in self.tracefile_list:
         tracefile_path = tracefile.to_file()
         self.assertTrue(os.path.exists(tracefile_path), "Attempted to write %s, but it does not exist.".format(tracefile_path))
         self.assertEqual(os.path.basename(tracefile_path), tracefile.filename, "The tracefile was written to disk with an unexpected file name.")