repo.or.cz
/
koha.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bug 11439: (follow up) add missing rollback call
[koha.git]
/
t
/
db_dependent
/
UploadedFile.t
blob
e6008d964bb760156fadb55c25d4fb93456c9271
1
#!/usr/bin/perl
2
#
3
4
# A simple test for UploadedFile
5
# only ->new is covered
6
7
use
strict
;
8
use
warnings
;
9
10
use
Test
::
More tests
=>
2
;
11
12
BEGIN
{
13
use_ok
(
'C4::UploadedFile'
);
14
}
15
16
ok
(
my
$file
=
C4
::
UploadedFile
->
new
());