Blame tests/bugfixes/github/test_pr_906.py

Packit 01d647
# -*- coding: utf-8 -*-
Packit 01d647
Packit 01d647
from system_tests import CaseMeta, path
Packit 01d647
Packit 01d647
class Sony2FpTest(metaclass=CaseMeta):
Packit 01d647
Packit 01d647
    filename = path("$data_path/exiv2-pr906.exv")
Packit 01d647
    commands = ["$exiv2 -pa --grep Sony2Fp $filename"]
Packit 01d647
Packit 01d647
    stdout = ["""Exif.Sony2Fp.AmbientTemperature              SByte       1  19
Packit 01d647
Exif.Sony2Fp.FocusMode                       Byte        1  6
Packit 01d647
Exif.Sony2Fp.AFAreaMode                      Byte        1  12
Packit 01d647
Exif.Sony2Fp.FocusPosition2                  Byte        1  140
Packit 01d647
"""
Packit 01d647
    ]
Packit 01d647
    stderr = [""]
Packit 01d647
    retval = [0]