def test_parse_tags(self):
     test_file = self.get_test_loc('haxe/tags/haxelib.json')
     expected_loc = self.get_test_loc('haxe/tags/haxelib.json.expected')
     package = haxe.parse(test_file)
     self.check_package(package, expected_loc)
Beispiel #2
0
 def test_parse_deps(self):
     test_file = self.get_test_loc('haxe/deps/haxelib.json')
     expected_loc = self.get_test_loc('haxe/deps/haxelib.json.expected')
     package = haxe.parse(test_file)
     self.check_package(package, expected_loc, regen=False)