diff options
author | ivan <ivan> | 2008-08-12 04:07:20 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-08-12 04:07:20 +0000 |
commit | 205910cf20ff1322ae76fd903285bba56689c205 (patch) | |
tree | 44b1213913eeac9586b20bde8eab3ecaf6d9d72b | |
parent | 9fbeda1dc776c602ce14d3874368d4620c079b60 (diff) |
-rw-r--r-- | t/34-doc_images-OpenOffice.t | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/t/34-doc_images-OpenOffice.t b/t/34-doc_images-OpenOffice.t index ba32b2d..241f58c 100644 --- a/t/34-doc_images-OpenOffice.t +++ b/t/34-doc_images-OpenOffice.t @@ -26,10 +26,11 @@ ok( scalar(@images) == 2, 'got two images' ); #} #check the names & lengths at least -is( $images[0]->[0], '10000000000000C80000009688B0FEF3.png', '1st image name'); +#well, the names don't appear to be consistent, but we can check they're png +like( $images[0]->[0], qr/^[0-9A-F]+.png$/, '1st image name'); ok( length($images[0]->[1]) == 8704, '1st image size'); -is( $images[1]->[0], '100000000000009D0000009F54B4BCB3.png', '2nd image name'); +like( $images[0]->[0], qr/^[0-9A-F]+.png$/, '2nd image name'); ok( length($images[1]->[1]) == 2125, '2nd image size'); |