Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
perl-WebService-Redmine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gerhard Gonter
perl-WebService-Redmine
Commits
5096ae84
Commit
5096ae84
authored
11 years ago
by
Anton Soldatov
Browse files
Options
Downloads
Patches
Plain Diff
* A short README added
* Minor changes in the perlcritic test
parent
a73b6570
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README
+14
-0
14 additions, 0 deletions
README
t/06-perlcritic.t
+10
-11
10 additions, 11 deletions
t/06-perlcritic.t
with
24 additions
and
11 deletions
README
0 → 100644
+
14
−
0
View file @
5096ae84
WebService::Redmine
This is a Perl binding to Redmine REST API (http://www.redmine.org/projects/redmine/wiki/Rest_api).
This is the part of the redminer project (https://github.com/igelhaus/redminer).
For more details, please see README.md file or POD documentation shipped with the module.
INSTALLATION
$ perl Makefile.PL
$ make
$ make test
$ make install
This diff is collapsed.
Click to expand it.
t/06-perlcritic.t
+
10
−
11
View file @
5096ae84
# BEGIN {
BEGIN
{
# if (!$ENV{REDMINER_DEVEL}) {
# require Test::More;
# Test::More::plan(skip_all => 'Development tests (REDMINER_DEVEL not set)' );
# }
# }
use
strict
;
use
strict
;
use
warnings
;
use
warnings
;
if
(
!
$ENV
{
REDMINER_DEVEL
})
{
use
Test::
More
;
require
Test::
More
;
Test::More::
plan
(
skip_all
=>
'
Development tests (REDMINER_DEVEL not set)
'
);
}
};
eval
'
use Test::Perl::Critic
';
eval
'
use Test::Perl::Critic
';
plan
skip_all
=>
'
Test::Perl::Critic required to criticise code
'
if
$@
;
plan
(
skip_all
=>
'
Test::Perl::Critic required to criticise code
')
if
$@
;
Test::Perl::
Critic
->
import
(
-
profile
=>
'
xt/perlcritic.rc
')
if
-
e
'
xt/perlcritic.rc
';
Test::Perl::
Critic
->
import
(
-
profile
=>
'
xt/perlcritic.rc
')
if
-
e
'
xt/perlcritic.rc
';
all_critic_ok
();
all_critic_ok
();
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