We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4213139 + 7e40a0a commit 1d26619Copy full SHA for 1d26619
test/simple.obj.gz
201 Bytes
test/test_parser.py
@@ -40,6 +40,15 @@ def testObjMaterials(self):
40
self.assertEqual(material2.name, 'Material2.simple')
41
42
43
+class TestParserGz(TestParsers):
44
+ """Run all tests is TestParsers for gzip file as well"""
45
+ def setUp(self):
46
+ # Append current path to locate files
47
+ meshes = pywavefront.Wavefront(prepend_dir('simple.obj.gz'))
48
+ self.mesh1 = meshes.mesh_list[0]
49
+ self.mesh2 = meshes.mesh_list[1]
50
+
51
52
class TestMtlParser(unittest.TestCase):
53
def setUp(self):
54
# Append current path to locate files
0 commit comments