Skip to content

Commit

Permalink
Add test for redefine
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Mar 28, 2022
1 parent 4f510c5 commit 53bfce5
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
16 changes: 10 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
10 changes: 10 additions & 0 deletions test/development/test-redefine.el
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 53bfce5

Please sign in to comment.