示例#1
0
 def test_vdf_parsing(self, file):
     """Tests that parsing and regenerating a vdf file generates the same contents"""
     path = os.path.join(vdfs_folder, file)
     file_contents = open(path, "r").read()
     shortcuts = ShortcutParser().parse(path)
     generated_contents = ShortcutGenerator().to_string(shortcuts)
     self.assertEqual(file_contents.lower(), generated_contents.lower())
 def test_vdf_parsing(self, file):
   """Tests that parsing and regenerating a vdf file generates the same contents"""
   path = os.path.join(vdfs_folder, file)
   file_contents = open(path,"r").read()
   shortcuts = ShortcutParser().parse(path)
   generated_contents = ShortcutGenerator().to_string(shortcuts)
   self.assertEqual(file_contents.lower(),generated_contents.lower())
示例#3
0
 def test_file_equality(self):
     file_contents = open(path,"r").read()
     shortcuts = ShortcutParser().parse(path)
     generated_contents = ShortcutGenerator().to_string(shortcuts)
     self.assertEqual(file_contents.lower(),generated_contents.lower())