Blame tests/bugfixes/redmine/test_issue_1062.py

Packit Service 21b5d1
# -*- coding: utf-8 -*-
Packit Service 21b5d1
Packit Service 21b5d1
import system_tests
Packit Service 21b5d1
Packit Service 21b5d1
class CheckNikonTimezoneWithoutCruft(metaclass=system_tests.CaseMeta):
Packit Service 21b5d1
Packit Service 21b5d1
    url = "http://dev.exiv2.org/issues/1062"
Packit Service 21b5d1
Packit Service 21b5d1
    filename = system_tests.path("$data_path/exiv2-bug1062.jpg")
Packit Service 21b5d1
    commands = [ "$exiv2 -pa -g zone $filename" ]
Packit Service 21b5d1
Packit Service 21b5d1
    stdout = [ """Exif.NikonWt.Timezone                        SShort      1  UTC -06:00
Packit Service 21b5d1
"""
Packit Service 21b5d1
    ]
Packit Service 21b5d1
    stderr = [""]
Packit Service 21b5d1
    retval = [0]