emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/clojure-ts-mode 4caa7bb244 3/6: Add first unit test with b


From: ELPA Syncer
Subject: [nongnu] elpa/clojure-ts-mode 4caa7bb244 3/6: Add first unit test with buttercup
Date: Tue, 13 Feb 2024 18:59:19 -0500 (EST)

branch: elpa/clojure-ts-mode
commit 4caa7bb244c36f87df12a51d9f1bd0aa70a2c34f
Author: p4v4n <pavan.mantha99@gmail.com>
Commit: Bozhidar Batsov <bozhidar@batsov.dev>

    Add first unit test with buttercup
---
 Eldev                             |  2 ++
 test/clojure-ts-mode-util-test.el | 29 +++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/Eldev b/Eldev
index e9243c64b1..dc1612d2d7 100644
--- a/Eldev
+++ b/Eldev
@@ -10,6 +10,8 @@
 
 (eldev-use-plugin 'autoloads)
 
+(eldev-add-extra-dependencies 'test 'buttercup)
+
 (setq byte-compile-docstring-max-column 240)
 (setq checkdoc-force-docstrings-flag nil)
 (setq checkdoc-permit-comma-termination-flag t)
diff --git a/test/clojure-ts-mode-util-test.el 
b/test/clojure-ts-mode-util-test.el
new file mode 100644
index 0000000000..9d02bcc088
--- /dev/null
+++ b/test/clojure-ts-mode-util-test.el
@@ -0,0 +1,29 @@
+;;; clojure-ts-mode-util-test.el --- Clojure TS Mode: util test suite  -*- 
lexical-binding: t; -*-
+
+;; Copyright © 2022-2024 Danny Freeman
+
+;; This file is not part of GNU Emacs.
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; The unit test suite of Clojure TS Mode
+
+(require 'clojure-ts-mode)
+(require 'buttercup)
+
+(describe "clojure-ts-mode-version"
+  (it "should not be nil"
+    (expect clojure-ts-mode-version)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]