#!/usr/bin/perl use lib '../blib/lib'; use strict; BEGIN { # to handle systems with no installed Test module # we include the t dir (where a copy of Test.pm is located) # as a fallback eval { require Test; }; if( $@ ) { use lib 't'; } use Test; plan tests => 1 } use CSS; ok(1); #1