summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2015-09-18 21:49:51 +0200
committerLudovic Courtès <ludo@gnu.org>2015-09-18 21:54:04 +0200
commite0566f12f8b57f3311c9aba1737e791763e89544 (patch)
treebac87e3ddaab353624b46008d0bc9b7065c9139c /tests
parent24a848c8e36e762968e6e2803a72ae570e9edbec (diff)
downloadguix-e0566f12f8b57f3311c9aba1737e791763e89544.tar.gz
lint: Report lonely parentheses.
* guix/scripts/lint.scm (%hanging-paren-rx): New variable.
  (report-lone-parentheses): New procedure.
  (%formatting-reporters): Use it.
* tests/lint.scm ("formatting: lonely parentheses"): New test.
Diffstat (limited to 'tests')
-rw-r--r--tests/lint.scm10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/lint.scm b/tests/lint.scm
index 9634fb68e7..3f149562d4 100644
--- a/tests/lint.scm
+++ b/tests/lint.scm
@@ -512,6 +512,16 @@ requests."
           (check-source pkg))))
     "not reachable: 404")))
 
+(test-assert "formatting: lonely parentheses"
+  (string-contains
+   (with-warnings
+     (check-formatting
+      (
+       dummy-package "ugly as hell!"
+      )
+      ))
+   "lonely"))
+
 (test-assert "formatting: tabulation"
   (string-contains
    (with-warnings