Alien-SVN
view release on metacpan or search on metacpan
src/subversion/subversion/bindings/swig/perl/native/t/3client.t view on Meta::CPAN
my $current_rev = 0;
# We want to trap errors ourself
$SVN::Error::handler = undef;
# Get username we are running as
my $username;
if ($^O eq 'MSWin32') {
$username = getlogin();
} else {
$username = getpwuid($>) || getlogin();
}
# This is ugly to create the test repo with SVN::Repos, but
# it seems to be the most reliable way.
# TEST
ok(SVN::Repos::create("$repospath", undef, undef, undef, undef),
"create repository at $repospath");
my ($ctx) = SVN::Client->new;
# TEST
( run in 0.306 second using v1.01-cache-2.11-cpan-8d75d55dd25 )