—=pod
=encoding utf-8
=head1 PURPOSE
Test that LINQ compiles.
=head1 AUTHOR
Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2014 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
use_ok(
'LINQ'
);
use_ok(
'LINQ::Array'
);
use_ok(
'LINQ::Iterator'
);
use_ok(
'LINQ::Collection'
);
use_ok(
'LINQ::Exception'
);
all_pod_files_ok(
'lib'
,
't'
);
{
local
$TODO
=
'must fix before release'
;
all_pod_coverage_ok(
'lib'
);
version_all_same(
'lib'
);
}
done_testing;