The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl
# Copyright (c) 2012 - Olof Johansson <olof@cpan.org>
# All rights reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.

use warnings;
use strict;
use lib 't/lib';
use Test::Text::FileTree;

run_tests(
	't/data/windows', {
		'C:' => {
			'Makefile.PL' => {},
			'lib' => {
				'Text' => {
					'FileTree.pm' => {},
				},
			},
			't' => {
				'01-distribution.t' => {},
				'02-parse.t' => {},
			},
		},
	}, [
		platform => 'Win32',
	]
);