repo.or.cz
/
aurutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
perl: add test skeletons
[aurutils.git]
/
perl
/
t
/
repo.t
blob
58f9b01800aa89874afcb14c72e414842293614c
1
#!/usr/bin/env perl
2
use
strict
;
3
use
warnings
;
4
use
v5
.
20
;
5
use
Test
::
More
;
6
7
# Check if module can be imported
8
require_ok
"AUR::Repo"
;
9
10
use
AUR
::
Repo
qw(list_attr check_attr check_type parse_db)
;
11
12
done_testing
();