Changeset 2533

Show
Ignore:
Timestamp:
06/09/08 22:24:59 (17 months ago)
Author:
mpaschal
Message:

Make spider tests optional

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/release-39/t/44-spider.t

    r1098 r2533  
    44 
    55use lib 't/lib', 'extlib', 'lib', '../lib', '../extlib'; 
    6 use Test::More tests => 4; 
     6use Test::More; 
     7 
     8BEGIN { 
     9    plan $ENV{MT_TEST_SPIDER} 
     10        ? (tests => 4) 
     11        : (skip_all => 'Enable spider test with MT_TEST_SPIDER environment variable') 
     12        ; 
     13} 
     14 
    715use LWP::UserAgent::Local; 
    816use URI;