Commiting a file called .git to git would confuse things.
People (debian) who want to be able to import a tree into svn can't deal with
a .svn existing.
Therefore, we use .exists to ensure the directory's present, and then call
mkdir on t/smells-of-vcs/.git so the strictures behaviour still triggers.
+ - switch .svn to .git in smells-of-vcs test and create it ourselves
+ to ease importing of this dist into subversion repositories
1.002000 - 2011-02-16
- add multidimensional and bareword::filehandles in author mode
1.1.1 Dec 05 2010
author 'mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>';
manifest_include(
- '' => qr{t/smells-of-vcs/.svn},
+ '' => qr{t/smells-of-vcs/.exists},
);
+mkdir('t/smells-of-vcs/.git') or die "Couldn't create fake .git: $!";
+
use Test::More qw(no_plan);
our (@us, @expect);