summaryrefslogtreecommitdiff
path: root/t/sip.t
diff options
context:
space:
mode:
authorKaren Etheridge <ether@cpan.org>2014-07-01 19:18:33 -0700
committerKaren Etheridge <ether@cpan.org>2014-07-02 11:46:09 -0700
commit294d9199f036dfb77811ed37e109524d67562a23 (patch)
tree59c1d350d6f94d32d171cd337d56552349cd044d /t/sip.t
parent94bd02f5cce4a10c6338f1a987bdfd648c28059e (diff)
downloaduri-294d9199f036dfb77811ed37e109524d67562a23.tar.gz
use strict and warnings in all modules, tests and scripts
Diffstat (limited to 't/sip.t')
-rw-r--r--t/sip.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/sip.t b/t/sip.t
index 302f4a7..993295f 100644
--- a/t/sip.t
+++ b/t/sip.t
@@ -1,9 +1,11 @@
#!perl -w
+use strict;
+use warnings;
+
print "1..11\n";
use URI;
-use strict;
my $u = URI->new('sip:phone@domain.ext');
print "not " unless $u->user eq 'phone' &&