document what other tests need to be written
This commit is contained in:
parent
6ce94b078d
commit
6fe068e42d
1 changed files with 16 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ my $extensionTests = [
|
|||
},
|
||||
];
|
||||
|
||||
plan tests => 9 + scalar @{ $extensionTests }; # increment this value for each test you create
|
||||
plan tests => 14 + scalar @{ $extensionTests }; # increment this value for each test you create
|
||||
|
||||
my $session = WebGUI::Test->session;
|
||||
|
||||
|
|
@ -110,6 +110,21 @@ foreach my $extTest ( @{ $extensionTests } ) {
|
|||
is( $imageStore->isImage($extTest->{filename}), $extTest->{isImage}, $extTest->{comment} );
|
||||
}
|
||||
|
||||
####################################################
|
||||
#
|
||||
# getSizeInPixels
|
||||
#
|
||||
####################################################
|
||||
|
||||
TODO: {
|
||||
local $TODO = "Methods that need to be tested";
|
||||
ok(0, 'copy also copies thumbnails');
|
||||
ok(0, 'deleteFile also deletes thumbnails');
|
||||
ok(0, 'getThumbnailUrl');
|
||||
ok(0, 'generateThumbnail');
|
||||
ok(0, 'resize');
|
||||
}
|
||||
|
||||
END {
|
||||
foreach my $stor (
|
||||
$imageStore,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue