root/lang/perl/WebService-Youtube/trunk/t/04kwalitee.t @ 109

Revision 109, 0.6 kB (checked in by holidays-l, 6 years ago)

Imported WebService?-Youtube

  • Property svn:executable set to *
Line 
1#!/usr/bin/env perl
2#
3# $Id: 04kwalitee.t 11 2007-04-09 04:34:01Z hironori.yoshida $
4#
5use strict;
6use warnings;
7use version; our $VERSION = qv('1.0.1');
8
9use English qw(-no_match_vars);
10use FindBin qw($Bin);
11use Test::Base;
12
13if ( $ENV{TEST_KWALITEE} || $ENV{TEST_ALL} || !$ENV{HARNESS_ACTIVE} ) {
14    chdir "$Bin/..";
15    eval {
16        require Test::Kwalitee;
17        Test::Kwalitee->import;
18    };
19    if ($EVAL_ERROR) {
20        plan skip_all => 'Test::Kwalitee required for testing Kwalitee';
21    }
22}
23else {
24    plan skip_all => 'set TEST_KWALITEE for testing Kwalitee';
25}
Note: See TracBrowser for help on using the browser.