#!/usr/bin/perl -w
use strict;
use Test::More tests => 2;
use lib "../lib";
BEGIN { -d "t" and chdir("t"); }
use_ok("Net::Download::Queue");
ok(Net::Download::Queue->rebuildDatabase(), "rebuildDatabase ok");
__END__