repo.or.cz
/
sgn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move validation of lists to more generic place.
[sgn.git]
/
t
/
SGN.t
blob
3fa6c9420ad1ed65bd4f4d846fd4ccd02b57f142
1
#!/usr/bin/env perl
2
use
strict
;
3
use
warnings
;
4
use
Test
::
Most
;
5
6
use
lib
't/lib'
;
7
use
SGN
::
Test
;
8
9
BEGIN
{
use_ok
'Catalyst::Test'
,
'SGN'
}
10
11
ok
(
request
(
'/'
)->
is_success
,
'Request should succeed'
);
12
13
done_testing
();