From 53bfce596bbdeadc8df387462dc197ca24b1a0a8 Mon Sep 17 00:00:00 2001 From: Jen-Chieh Date: Mon, 28 Mar 2022 16:19:18 +0800 Subject: [PATCH] Add test for redefine --- Makefile | 16 ++++++++++------ test/development/test-redefine.el | 10 ++++++++++ 2 files changed, 20 insertions(+), 6 deletions(-) create mode 100644 test/development/test-redefine.el diff --git a/Makefile b/Makefile index 6d5c8a9a..13582abb 100644 --- a/Makefile +++ b/Makefile @@ -3,18 +3,22 @@ SHELL := /usr/bin/env bash EMACS ?= emacs EASK ?= eask -.PHONY: install test-global test-local +.PHONY: install test-global test-local test-redefine -test: install test-global test-local +test-commands: install test-global test-local install: @echo "Preparing Eask..." npm install test-global: - @echo "Test global commands..." - sh ./test/test_global.sh + @echo "[Commands] Test global commands..." + sh ./test/commands/test_global.sh test-local: - @echo "Test local commands..." - sh ./test/test_local.sh + @echo "[Commands] Test local commands..." + sh ./test/commands/test_local.sh + +test-redefine: + @echo "[Development] Test redefine..." + echo "N/A" diff --git a/test/development/test-redefine.el b/test/development/test-redefine.el new file mode 100644 index 00000000..6379411e --- /dev/null +++ b/test/development/test-redefine.el @@ -0,0 +1,10 @@ +;;; test-redefine.el --- Test redefine -*- lexical-binding: t; -*- +;;; Commentary: +;;; Code: + + + +;; Local Variables: +;; byte-compile-warnings: (redefine) +;; End: +;;; test-redefine.el ends here