Ejemplo n.º 1
0
 def test_run_parse_with_spaces_in_file_name(self):
     self.s.files = [
         '../data/Check It Out.enex',
     ]
     dump.run_parse(self.s)
     self.assertTrue(os.path.isdir('Check It Out'))
     shutil.rmtree('Check It Out')
Ejemplo n.º 2
0
 def test_run_parse_multiple_files(self):
     self.s.files = ['../data/Archives.enex', '../data/Recipes.enex']
     dump.run_parse(self.s)
     self.assertTrue(os.path.isdir('Archives'))
     self.assertTrue(os.path.isdir('Recipes'))
     shutil.rmtree('Archives')
     shutil.rmtree('Recipes')
Ejemplo n.º 3
0
 def test_run_parse_auto_rename_do_not_overwrite(self):
     self.s.files =['data/Check It Out.enex', 'data/Check It Out.enex']
     dump.run_parse(self.s)
     dump.run_parse(self.s)
     self.assertTrue(os.path.isdir('Check It Out'))
     self.assertTrue(os.path.isfile('Check It Out/Great Chili-2.md'))
     shutil.rmtree('Check It Out')
Ejemplo n.º 4
0
 def test_run_parse_single_file_with_out_overwrite(self):
     self.s.files = ['../data/Archives.enex']
     dump.run_parse(self.s)
     self.assertTrue(os.path.isdir('Archives'))
     shutil.rmtree('Archives')
 def test_run_parse_filename_match_note_title(self):
     self.s.files = ['data/Recipes.enex', ]
     self.s.n = True
     dump.run_parse(self.s)
     self.assertTrue(os.path.isfile(("Recipes/Healthy Recipe From Joy Bauer's Food Cures Light Balsamic Vinaigrette.md")))
     shutil.rmtree('Recipes')