You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
557 B
Python
20 lines
557 B
Python
7 years ago
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from system_tests import CaseMeta, path
|
||
|
|
||
|
|
||
|
class Canon_EF_35mm_f_slash_2_IS_USM_Lens(metaclass=CaseMeta):
|
||
|
|
||
|
url = "http://dev.exiv2.org/issues/876"
|
||
|
|
||
|
filename = path("$data_path/exiv2-bug876.jpg")
|
||
|
|
||
|
commands = ["$exiv2 -pt --grep Model $filename"]
|
||
|
|
||
|
stdout = ["""Exif.Image.Model Ascii 13 Canon EOS 6D
|
||
|
Exif.Canon.ModelID Long 1 EOS 6D
|
||
|
Exif.Canon.LensModel Ascii 74 EF35mm f/2 IS USM
|
||
|
"""]
|
||
|
stderr = [""]
|
||
|
retval = [0]
|