The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -w
use strict;
use Test::More tests => 1;
use Imager;
use Imager::Test qw(test_image);

-d "testout" or mkdir "testout";

# checks that we load the CUR write handler automatically
my $img = test_image();
ok($img->write(file => 'testout/cursing.cur'),
   "write cur with autoload")
  or print "# ",$img->errstr,"\n";