in reply to Re^2: Test::More fails on foreach loop
in thread Test::More fails on foreach loop

Not really. Now you have a test that can't possibly fail. You want
# Not ok if parse throws an exception. ok(eval { $xbrl->parse($incoming_file); 1 });

Replies are listed 'Best First'.
Re^4: Test::More fails on foreach loop
by Notdeadyet (Initiate) on Mar 16, 2011 at 20:44 UTC
    Thanks for your help!