diff options
-rw-r--r-- | tests/exiftool-tests.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/exiftool-tests.el b/tests/exiftool-tests.el index 8ed4f1c..36aeb0b 100644 --- a/tests/exiftool-tests.el +++ b/tests/exiftool-tests.el @@ -1,7 +1,7 @@ ;;; exiftool.el --- Elisp wrapper around exiftool ;; -*- lexical-binding: t -*- ;; Elisp wrapper around exiftool -;; Copyright (C) 2017, 2019 by Arun I +;; Copyright (C) 2017, 2019, 2021 by Arun I ;; ;; Author: Arun I <arunisaac@systemreboot.net> ;; Keywords: data @@ -28,6 +28,10 @@ ;;; Code: +(require 'exiftool) +(require 'cl-lib) +(require 'ert) + (defvar exiftool-tests--tag-value '(("Marked" . "True") ("Creator" . "foo") @@ -43,10 +47,6 @@ tag)) exiftool-tests--tag-value)) -(require 'exiftool) -(require 'cl-lib) -(require 'ert) - (defmacro with-temp-test-file (test-file temp-file &rest body) "Copy TEST-FILE to temporary file, put path in TEMP-FILE, evaluate BODY." (declare (indent defun)) |