exiv2/tests/bash_tests/test_pr_1905.py
Peter d17b7e4484
Fix test_pr_1905.py for native 2019msvc64 (#2108) (#2112)
* Fix test_pr_1905.py for native 2019msvc64 (#2108)

* Move test_pr_1905_poc1_ref.out to reference dir
2022-02-20 21:38:25 +00:00

19 lines
438 B
Python

# -*- coding: utf-8 -*-
from system_tests import CaseMeta, path
class TestExifTagsInTaglist(metaclass=CaseMeta):
url = "https://github.com/Exiv2/exiv2/pull/1905/files"
def setUp(self):
self.stdout = [open(self.expand_variables("$filename_ref"),'r').read()]
filename_ref = path("$ref_path/test_pr_1905_poc1_ref.out")
commands = ["$taglist Exif"]
stderr = [""]
retval = [0]