Removed /usr/local from CDPATH
[clearscm.git] / test / testConfluence.pl
1 #/usr/bin/env perl
2 use strict;
3 use warnings;
4
5 use FindBin;
6
7 use lib "$FindBin::Bin/../lib";
8
9 use Confluence;
10
11 my $confluence = Confluence->new (
12   username => 'adefaria',
13   server   => 'confluence',
14   port     => 8080,
15 );
16
17 my $content = $confluence->getContent (
18   title => 'Knowles Migration',
19 );
20