setup.pl 1.0 KB

123456789101112131415161718192021222324252627
  1. # Copyright (C) 2015 Alex Schroeder <alex@gnu.org>
  2. #
  3. # This program is free software; you can redistribute it and/or modify it under
  4. # the terms of the GNU General Public License as published by the Free Software
  5. # Foundation; either version 3 of the License, or (at your option) any later
  6. # version.
  7. #
  8. # This program is distributed in the hope that it will be useful, but WITHOUT
  9. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  10. # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  11. #
  12. # You should have received a copy of the GNU General Public License along with
  13. # this program. If not, see <http://www.gnu.org/licenses/>.
  14. # This "test" does nothing but delete any extra test-data directories.
  15. use Test::More;
  16. use File::Path qw(remove_tree);
  17. opendir(my $dh, '.') || die "can't opendir the working directory: $!";
  18. @test_dirs = grep { /^test-data/ && -d $_ } readdir($dh);
  19. closedir $dh;
  20. remove_tree(@test_dirs, {error => \my $err});
  21. ok(@$err == 0, "No errors deleting test-data directories");
  22. done_testing();