fix743_NikonSigmaArtLens

This commit is contained in:
clanmills
2019-05-21 11:30:33 +01:00
parent b35c43e7c2
commit b1ed1bf246
3 changed files with 22 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from system_tests import CaseMeta, path
class Issue743NikonSigmaArtLens(metaclass=CaseMeta):
"""
Regression test for the bug described in:
https://github.com/Exiv2/exiv2/issues/743
"""
url = "https://github.com/Exiv2/exiv2/issues/743"
filename = path("$data_path/issue_743.exv")
commands = ["$exiv2 -pa --grep lensid/i $filename"]
stderr = [""]
stdout = [""
"""Exif.NikonLd3.LensIDNumber Byte 1 Sigma 24-70mm F2,8 DG OS HSM Art
"""
]
retval = [0]