summaryrefslogtreecommitdiff
path: root/test/lisp/image-tests.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-03-15 01:43:11 +0100
committerStefan Kangas <stefan@marxist.se>2021-03-15 01:43:11 +0100
commit8548ad2cb3f0eff766cc87d0db78a09972c72acc (patch)
tree710b610f14e1543d4a87afa1572bcb5855f73298 /test/lisp/image-tests.el
parent8b024a6ff10f7907445ea60c4db8355638616ed1 (diff)
downloademacs-8548ad2cb3f0eff766cc87d0db78a09972c72acc.tar.gz
emacs-8548ad2cb3f0eff766cc87d0db78a09972c72acc.tar.bz2
emacs-8548ad2cb3f0eff766cc87d0db78a09972c72acc.zip
Add three new tests for image.el
* test/lisp/image-tests.el (image-find-image) (image-type-from-file-name, image-type/from-filename): New tests.
Diffstat (limited to 'test/lisp/image-tests.el')
-rw-r--r--test/lisp/image-tests.el11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/lisp/image-tests.el b/test/lisp/image-tests.el
index ab7585ca050..bb42ffae18e 100644
--- a/test/lisp/image-tests.el
+++ b/test/lisp/image-tests.el
@@ -48,6 +48,17 @@
(setf (image-property image :width) nil)
(should (equal image '(image)))))
+(ert-deftest image-find-image ()
+ (find-image '((:type xpm :file "undo.xpm")))
+ (find-image '((:type png :file "newsticker/rss-feed.png" :ascent center))))
+
+(ert-deftest image-type-from-file-name ()
+ (should (eq (image-type-from-file-name "foo.jpg") 'jpeg))
+ (should (eq (image-type-from-file-name "foo.png") 'png)))
+
+(ert-deftest image-type/from-filename ()
+ (should (eq (image-type "foo.jpg") 'jpeg)))
+
(ert-deftest image-type-from-file-header-test ()
"Test image-type-from-file-header."
(should (eq (if (image-type-available-p 'svg) 'svg)