Added test for Git::Wrapper
Paul Tipper [Sat, 20 Nov 2010 19:18:17 +0000 (19:18 +0000)]
t/Deploy/git.t

index 205665c..d65fdc0 100644 (file)
@@ -9,6 +9,7 @@ use Test::Exception;
 use File::Temp qw/tempdir/;
 
 BEGIN { use_ok( 'Oyster::Deploy::Git' ); }
+BEGIN { use_ok( 'Git::Wrapper' ); }
 
 my $tmpdir = tempdir();
 
@@ -21,4 +22,4 @@ ok((-d "${tmpdir}/testapp"), "App directory created");
 
 throws_ok(sub {$deploy->create("${tmpdir}/testapp")}, 'Error::Simple', "Directory already exists");
 ok((-f "${tmpdir}/testapp/.git/hooks/post-receive"), "Post reveive hook exists");
-ok((-f "${tmpdir}/testapp/.git/hooks/post-update"), "Post update hook exists");
\ No newline at end of file
+ok((-f "${tmpdir}/testapp/.git/hooks/post-update"), "Post update hook exists");