The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w
use Test::More;
use strict;

BEGIN { plan tests => 1 }

use Mac::Components;

SKIP: {
#	skip "Mac::Components", 1;

# try to open components, get info from them

	my $count = 0;
	for (my $comp = 0; $comp = FindNextComponent($comp, $ARGV[0]); ) {
		++$count;
	}
	is($count, CountComponents(), 'count components');
}

__END__