summaryrefslogtreecommitdiff
path: root/tests/lint.scm
diff options
context:
space:
mode:
authorEric Bavier <bavier@member.fsf.org>2014-10-26 12:36:42 -0500
committerEric Bavier <bavier@member.fsf.org>2014-10-26 13:03:53 -0500
commit3c42965b1ecd392da7691e5c7e25303ea385bf3d (patch)
tree9a525f5fb7f97110b4817b9c5e53630248b27766 /tests/lint.scm
parent903581f971cd63e3079e849b171bdb8e8118141f (diff)
downloadgnu-guix-3c42965b1ecd392da7691e5c7e25303ea385bf3d.tar
gnu-guix-3c42965b1ecd392da7691e5c7e25303ea385bf3d.tar.gz
guix: lint: Make exception for package name starting description.
* guix/scripts/lint.scm (check-description-style): Exception for upper-case rule if the description starts with the package name. * tests/lint.scm: Test it.
Diffstat (limited to 'tests/lint.scm')
-rw-r--r--tests/lint.scm9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/lint.scm b/tests/lint.scm
index 9557887e4f..2061cc18cb 100644
--- a/tests/lint.scm
+++ b/tests/lint.scm
@@ -72,6 +72,15 @@
(check-description-style pkg))))
"description should start with an upper-case letter")))
+(test-assert "description: may start with lower-case package name"
+ (not
+ (string-contains (call-with-warnings
+ (lambda ()
+ (let ((pkg (dummy-package "x"
+ (description "x is a dummy package."))))
+ (check-description-style pkg))))
+ "description should start with an upper-case letter")))
+
(test-assert "description: two spaces after end of sentence"
(->bool
(string-contains (call-with-warnings