summaryrefslogtreecommitdiff
path: root/el-exiftool-tests.el
diff options
context:
space:
mode:
authorArun Isaac2017-02-23 00:49:21 +0530
committerArun Isaac2017-02-23 00:49:21 +0530
commitc18b8a0fd8953853864b69d4884bfc6da3ed0215 (patch)
tree16b73309af026565b459d8469b1936fa319abc14 /el-exiftool-tests.el
parent7d42d9d2db950eaea8064238a99ac2c38faf43f9 (diff)
downloadexiftool.el-c18b8a0fd8953853864b69d4884bfc6da3ed0215.tar.gz
exiftool.el-c18b8a0fd8953853864b69d4884bfc6da3ed0215.tar.lz
exiftool.el-c18b8a0fd8953853864b69d4884bfc6da3ed0215.zip
Add headers and footers.
* el-exiftool.el: Add headers and footers as per emacs lisp coding conventions. * el-exiftool-tests.el: Add headers and footers as per emacs lisp coding conventions.
Diffstat (limited to 'el-exiftool-tests.el')
-rw-r--r--el-exiftool-tests.el19
1 files changed, 19 insertions, 0 deletions
diff --git a/el-exiftool-tests.el b/el-exiftool-tests.el
index 0dd0cc6..0025cf4 100644
--- a/el-exiftool-tests.el
+++ b/el-exiftool-tests.el
@@ -1,3 +1,12 @@
+;;; el-exiftool.el --- Elisp wrapper around exiftool ;; -*- lexical-binding: t -*-
+
+;; Elisp wrapper around exiftool
+;; Copyright (C) 2017 by Arun I
+;;
+;; Author: Arun I <arunisaac@systemreboot.net>
+;; Keywords: data
+;; Homepage: https://git.systemreboot.net/el-exiftool
+
;; This file is part of el-exiftool.
;; el-exiftool is free software: you can redistribute it and/or modify
@@ -13,6 +22,12 @@
;; You should have received a copy of the GNU General Public License
;; along with el-exiftool. If not, see <http://www.gnu.org/licenses/>.
+;;; Commentary:
+;;
+;; Unit testing for el-exiftool
+
+;;; Code:
+
(require 'el-exiftool)
(require 'ert)
@@ -26,3 +41,7 @@
(should (equal (el-exiftool-read temp-filename (caar tag-value-alist))
tag-value-alist))
(delete-file temp-filename))))
+
+(provide 'el-exiftool-tests)
+
+;;; el-exiftool-tests.el ends here