diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lint.scm | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/tests/lint.scm b/tests/lint.scm index fe12bebd88..912a78d111 100644 --- a/tests/lint.scm +++ b/tests/lint.scm @@ -6,7 +6,7 @@ ;;; Copyright © 2016 Hartmut Goebel <[email protected]> ;;; Copyright © 2017 Alex Kost <[email protected]> ;;; Copyright © 2017 Efraim Flashner <[email protected]> -;;; Copyright © 2018 Arun Isaac <[email protected]> +;;; Copyright © 2018, 2019 Arun Isaac <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -775,7 +775,16 @@ (method url-fetch) (uri (%local-url)) (sha256 %null-sha256)))))))))) - github-url))) + github-url)) + (test-assert "github-url: already the correct github url" + (string-null? + (with-warnings + (check-github-url + (dummy-package "x" (source + (origin + (method url-fetch) + (uri github-url) + (sha256 %null-sha256))))))))) (test-assert "cve" (mock ((guix scripts lint) package-vulnerabilities (const '())) |