[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] scratch/editorconfig-cc a38a4f2111 160/351: Add tests for lisp-
From: |
Stefan Monnier |
Subject: |
[nongnu] scratch/editorconfig-cc a38a4f2111 160/351: Add tests for lisp-indent-offset ignore |
Date: |
Thu, 13 Jun 2024 18:38:49 -0400 (EDT) |
branch: scratch/editorconfig-cc
commit a38a4f211148564c015cd16d780cf1e4baa39ea4
Author: Jay Kamat <jaygkamat@gmail.com>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>
Add tests for lisp-indent-offset ignore
---
ert-tests/editorconfig.el | 27 +++++++++++++++++++++++++++
ert-tests/test_files_secondary/.editorconfig | 5 +++++
ert-tests/test_files_secondary/2_space.el | 1 +
3 files changed, 33 insertions(+)
diff --git a/ert-tests/editorconfig.el b/ert-tests/editorconfig.el
index 11b7895c88..4aebde67cf 100644
--- a/ert-tests/editorconfig.el
+++ b/ert-tests/editorconfig.el
@@ -10,6 +10,10 @@
(concat default-directory
"ert-tests/plugin-tests/test_files/"))
+(defvar editorconfig-secondary-ert-dir
+ (concat default-directory
+ "ert-tests/test_files_secondary/"))
+
(ert-deftest test-editorconfig nil
"Check if properties are applied."
(editorconfig-mode 1)
@@ -25,3 +29,26 @@
(should (eq tab-width 8))
(should (eq indent-tabs-mode nil)))
(editorconfig-mode -1))
+
+(ert-deftest test-lisp-use-default-indent nil
+ (editorconfig-mode 1)
+
+ (with-visit-file (concat editorconfig-secondary-ert-dir
+ "2_space.el")
+ (should (eq lisp-indent-offset 2)))
+
+ (let ((editorconfig-lisp-use-default-indent t))
+ (with-visit-file (concat editorconfig-secondary-ert-dir
+ "2_space.el")
+ (should (eq lisp-indent-offset nil))))
+
+ (let ((editorconfig-lisp-use-default-indent 2))
+ (with-visit-file (concat editorconfig-secondary-ert-dir
+ "2_space.el")
+ (should (eq lisp-indent-offset nil))))
+
+ (let ((editorconfig-lisp-use-default-indent 4))
+ (with-visit-file (concat editorconfig-secondary-ert-dir
+ "2_space.el")
+ (should (eq lisp-indent-offset 2))))
+ (editorconfig-mode -1))
diff --git a/ert-tests/test_files_secondary/.editorconfig
b/ert-tests/test_files_secondary/.editorconfig
new file mode 100644
index 0000000000..5ebe4a1bdd
--- /dev/null
+++ b/ert-tests/test_files_secondary/.editorconfig
@@ -0,0 +1,5 @@
+root = true
+
+[2_space.el]
+indent_size = 2
+indent_style = tab
diff --git a/ert-tests/test_files_secondary/2_space.el
b/ert-tests/test_files_secondary/2_space.el
new file mode 100644
index 0000000000..a566b8af2a
--- /dev/null
+++ b/ert-tests/test_files_secondary/2_space.el
@@ -0,0 +1 @@
+(print "hello world")
- [nongnu] scratch/editorconfig-cc faa796ffc8 101/351: Use GFM style code block, (continued)
- [nongnu] scratch/editorconfig-cc faa796ffc8 101/351: Use GFM style code block, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 4e5526d1d9 149/351: Add file_type_emacs entry for .editorconfig, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc b70817d18d 139/351: Catch error thrown from editorconfig-custom-hooks, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 87d78d5746 106/351: Add examples for core-handle members, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc ef4f52c512 126/351: Fix a doc string., Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 4f7a5b0c53 104/351: Use truename for editorconfig name, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 9de91946be 134/351: By default always use Emacs Lisp Core when accessing remote files (#118), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 6cf680e9c7 112/351: Print line number and its content on parse error (#95), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 05f63eca50 136/351: Update year in copyright, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 58e2e82ce3 151/351: Add apache-mode support (#135), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc a38a4f2111 160/351: Add tests for lisp-indent-offset ignore,
Stefan Monnier <=
- [nongnu] scratch/editorconfig-cc 4615e1b66b 108/351: Bump version to 0.7.6, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 25edbde066 142/351: Add support for feature mode. (#128), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc d6632cb80b 111/351: Add a note about deprecating marmalade repository, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 34ad61d6f8 119/351: Bump version to 0.7.7, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 907a4afa7a 143/351: Set `fill-column` directly, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 302afbb3e3 150/351: Add file_type_emacs to editorocnfig-conf-mode keywords, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 849229726d 127/351: Massive reformatting of docstrings., Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 53507a8f23 158/351: Add csharp-mode support (#154), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 490381ede2 154/351: Prepare v0.7.11, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 17ba04ab68 141/351: Update editorconfig-conf-mode lighter text, Stefan Monnier, 2024/06/13