add build_requires for Test::Deep
[TAP-Harness-JUnit.git] / t / xmlfile_default.t
blob77567e6d4d882c6e5417e580e43f8f3ca2c90f18
1 #!/usr/bin/perl
3 # This test tests whether TAP::Harness::JUnit can be
4 # instantialized without a xmlfile argument (rt#42069)
6 use strict;
7 use warnings;
9 use TAP::Harness::JUnit;
10 use Test::More;
12 plan tests => 3;
14 my $harness;
15 close STDERR;
16 eval { $harness = TAP::Harness::JUnit->new };
18 ok( !$@ );
19 ok( $harness );
20 isa_ok( $harness, 'TAP::Harness::JUnit');