Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Guix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ogs
inf
Guix
Commits
d0662af9
Commit
d0662af9
authored
10 years ago
by
Eric Bavier
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add Test-Directory.
* gnu/packages/perl.scm (perl-test-directory): New variable.
parent
d4dfe333
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnu/packages/perl.scm
+24
-0
24 additions, 0 deletions
gnu/packages/perl.scm
with
24 additions
and
0 deletions
gnu/packages/perl.scm
+
24
−
0
View file @
d0662af9
...
...
@@ -1385,6 +1385,30 @@ (define-public perl-test-differences
;; license, any version, ..."
(
license
gpl3+
)))
(
define-public
perl-test-directory
(
package
(
name
"perl-test-directory"
)
(
version
"0.041"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
string-append
"mirror://cpan/authors/id/S/SA/SANBEG/"
"Test-Directory-"
version
".tar.gz"
))
(
sha256
(
base32
"1ncql08cizhicbxwd753b4czns8nlcnlw0zfjcfrbdd41x4j6hqr"
))))
(
build-system
perl-build-system
)
(
native-inputs
`
((
"perl-test-exception"
,
perl-test-exception
)))
(
home-page
"http://search.cpan.org/dist/Test-Directory"
)
(
synopsis
"Perl extension for maintaining test directories"
)
(
description
"Testing code can involve making sure that files are created
and deleted as expected. Doing this manually can be error prone, as it's easy
to forget a file, or miss that some unexpected file was added. This module
simplifies maintaining test directories by tracking their status as they are
modified or tested with this API, making it simple to test both individual
files, as well as to verify that there are no missing or unknown files."
)
(
license
(
package-license
perl
))))
(
define-public
perl-test-exception
(
package
(
name
"perl-test-exception"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment