summaryrefslogtreecommitdiff
path: root/bucky2/t/svn.pl
diff options
context:
space:
mode:
Diffstat (limited to 'bucky2/t/svn.pl')
-rwxr-xr-xbucky2/t/svn.pl10
1 files changed, 10 insertions, 0 deletions
diff --git a/bucky2/t/svn.pl b/bucky2/t/svn.pl
new file mode 100755
index 0000000..bac834b
--- /dev/null
+++ b/bucky2/t/svn.pl
@@ -0,0 +1,10 @@
+#!/usr/bin/perl
+use lib "../lib";
+use Bucky::SVN;
+use Data::Dumper;
+my $svn = new Bucky::SVN;
+my $records = $svn->list;
+foreach my $rec (@$records)
+ {
+ print Dumper($rec);
+ }