]> git.imager.perl.org - imager.git/blame - ICO/t/t41curmultread.t
remove a pointless NULL check from i_flipxy()
[imager.git] / ICO / t / t41curmultread.t
CommitLineData
2b405c9e
TC
1#!perl -w
2use strict;
3use Test::More tests => 1;
4use Imager;
5
6# checks that we load the CUR handler automatically for multiple image reads
7my @im = Imager->read_multi(file=>'testimg/pal43232.cur');
8is(scalar(@im), 1,
9 "check that cursor reader loaded correctly for singles")
10 or print "# ", Imager->errstr, "\n";