ef9b682f19aedaa0850f0fb47399d2d698939029
[www-offliberty.git] / t / 50-network.t
1 #!/usr/bin/perl -w
2 use strict;
3 use warnings;
4
5 use LWP::Online ':skip_all';
6 use Test::More tests => 2;
7 use WWW::Offliberty qw/off/;
8
9 my @results;
10 @results = off "http://youtube.com/watch?v=Tj75Arhq5ho";
11 is @results, 1, 'youtube';
12
13 @results = off "http://youtube.com/watch?v=Tj75Arhq5ho", video_file => 1;
14 is @results, 2, 'youtube, video_file => 1';
This page took 0.023183 seconds and 3 git commands to generate.